Skip to content

Commit

Permalink
SHIBUI-971 Fixed issue with creating source
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 5, 2018
1 parent 7ef342f commit 6f5a1f3
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 6f5a1f3

Please sign in to comment.