UI: Fixed close mobile bundle dialog without add/edit

This commit is contained in:
Vladyslav_Prykhodko 2024-11-21 10:12:42 +02:00
parent 4e3201cc5b
commit a90076f523

View File

@ -146,7 +146,8 @@ export class MobileBundleTableConfigResolver {
} }
}).afterClosed() }).afterClosed()
.subscribe((res) => { .subscribe((res) => {
if (res && !isAdd) { if (res) {
if (!isAdd) {
this.config.updateData(); this.config.updateData();
} else { } else {
this.store.pipe(select(selectUserSettingsProperty('notDisplayConfigurationAfterAddMobileBundle'))).pipe( this.store.pipe(select(selectUserSettingsProperty('notDisplayConfigurationAfterAddMobileBundle'))).pipe(
@ -159,6 +160,7 @@ export class MobileBundleTableConfigResolver {
} }
}); });
} }
}
}); });
} }