diff --git a/ui-ngx/src/app/modules/home/pages/mobile/bundes/mobile-bundle-table-config.resolve.ts b/ui-ngx/src/app/modules/home/pages/mobile/bundes/mobile-bundle-table-config.resolve.ts index c1c00b40ac..aa25868af8 100644 --- a/ui-ngx/src/app/modules/home/pages/mobile/bundes/mobile-bundle-table-config.resolve.ts +++ b/ui-ngx/src/app/modules/home/pages/mobile/bundes/mobile-bundle-table-config.resolve.ts @@ -146,18 +146,20 @@ export class MobileBundleTableConfigResolver { } }).afterClosed() .subscribe((res) => { - if (res && !isAdd) { - this.config.updateData(); - } else { - this.store.pipe(select(selectUserSettingsProperty('notDisplayConfigurationAfterAddMobileBundle'))).pipe( - take(1) - ).subscribe((settings: boolean) => { - if (!settings) { - this.configurationApp(null, res, true); - } else { - this.config.updateData(); - } - }); + if (res) { + if (!isAdd) { + this.config.updateData(); + } else { + this.store.pipe(select(selectUserSettingsProperty('notDisplayConfigurationAfterAddMobileBundle'))).pipe( + take(1) + ).subscribe((settings: boolean) => { + if (!settings) { + this.configurationApp(null, res, true); + } else { + this.config.updateData(); + } + }); + } } }); }