UI: Fixed close mobile bundle dialog without add/edit
This commit is contained in:
parent
4e3201cc5b
commit
a90076f523
@ -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();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user