fix edit dialog creation d/t success emitter was renamed

This commit is contained in:
Michael Shamoon
2022-12-30 07:33:45 -08:00
parent f4e5023d22
commit 2bc208cd6e
4 changed files with 8 additions and 8 deletions

View File

@@ -546,7 +546,7 @@ export class SettingsComponent
})
modal.componentInstance.dialogMode = account ? 'edit' : 'create'
modal.componentInstance.object = account
modal.componentInstance.success
modal.componentInstance.succeeded
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe({
next: (newMailAccount) => {
@@ -604,7 +604,7 @@ export class SettingsComponent
})
modal.componentInstance.dialogMode = rule ? 'edit' : 'create'
modal.componentInstance.object = rule
modal.componentInstance.success
modal.componentInstance.succeeded
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe({
next: (newMailRule) => {