Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-971 (pull request #229)
Browse files Browse the repository at this point in the history
SHIBUI-971 Fixed issue with creating source

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
rmathis committed Nov 5, 2018
2 parents 7ef342f + 6f5a1f3 commit 7234866
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class ResolverWizardComponent implements OnDestroy, CanComponentDeactivat
currentState: RouterStateSnapshot,
nextState: RouterStateSnapshot
): Observable<boolean> {
if (nextState.url.match('wizard')) { return of(true); }
if (nextState.url.match('blank')) { return of(true); }
if (Object.keys(this.changes).length > 0) {
let modal = this.modalService.open(UnsavedEntityComponent);
modal.componentInstance.message = 'resolver';
Expand Down

0 comments on commit 7234866

Please sign in to comment.