Skip to content

Commit

Permalink
Merge branch 'master' into feature/AS-578
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jun 29, 2018
2 parents 909719e + f141da5 commit 426522e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="container-fluid p-3" role="main">
<wizard (onNext)="next($event)" (onPrevious)="previous($event)" (onSave)="save()"></wizard>
<wizard (onNext)="next()" (onPrevious)="previous()" (onSave)="save()"></wizard>
<hr />
<div class="row">
<div class="col col-xl-6 col-lg-9 col-xs-12">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class ProviderWizardComponent implements OnDestroy {
this.changeSubject.complete();
}

next(id: string): void {
next(): void {
if (this.nextStep) {
this.store.dispatch(new SetIndex(this.nextStep.id));
}
Expand Down

0 comments on commit 426522e

Please sign in to comment.