Admin Dataset editor guard fix.
This commit is contained in:
parent
0780c629c9
commit
52c26cd864
|
@ -471,6 +471,7 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
this.datasetProfileService.updateForm(this.datasetProfileId, this.form.getRawValue())
|
this.datasetProfileService.updateForm(this.datasetProfileId, this.form.getRawValue())
|
||||||
.pipe(takeUntil(this._destroyed))
|
.pipe(takeUntil(this._destroyed))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
|
this.form.markAsPristine();//deactivate guard
|
||||||
this.router.navigate(['/dataset-profiles']);
|
this.router.navigate(['/dataset-profiles']);
|
||||||
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success)
|
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success)
|
||||||
},error=>this.onCallbackError(error));
|
},error=>this.onCallbackError(error));
|
||||||
|
|
Loading…
Reference in New Issue