Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
fix: fixed names of osio parameters (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
edewit authored Oct 17, 2018
1 parent 78f0b5c commit 0940bd1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ReleaseStrategyStepComponent extends LauncherStep implements OnInit

ngOnInit() {
const state = new StepState(this.pipeline, [
{ name: 'pipelineId', value: 'id' }
{ name: 'pipeline', value: 'id' }
]);
this.projectile.setState(this.id, state);

Expand Down
4 changes: 2 additions & 2 deletions projects/ngx-launcher/src/lib/model/projectile.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export class Projectile<T> {
{ name: 'projectName', value: 'projectName' },
{ name: 'projectVersion', value: 'projectVersion' },
{ name: 'groupId', value: 'groupId' },
{ name: 'artifactId', value: 'artifactId' },
{ name: 'spacePath', value: 'spacePath' },
{ name: 'artifactId', value: 'mavenArtifact' },
{ name: 'space', value: 'spacePath' },
{ name: 'targetEnvironment', value: 'targetEnvironment' }
]);
this.setState('shared', state);
Expand Down

0 comments on commit 0940bd1

Please sign in to comment.