We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
update()
1 parent 3a1f07b commit 820b846Copy full SHA for 820b846
apps/settings/src/mixins/AppManagement.js
@@ -255,11 +255,11 @@ export default {
255
},
256
update(appId) {
257
if (this.app?.app_api) {
258
- this.appApiStore.updateApp(appId)
+ return this.appApiStore.updateApp(appId)
259
.then(() => { rebuildNavigation() })
260
.catch((error) => { showError(error) })
261
} else {
262
- this.$store.dispatch('updateApp', { appId })
+ return this.$store.dispatch('updateApp', { appId })
263
264
.then(() => {
265
rebuildNavigation()
0 commit comments