From 70fa7c9db6d1dbaaaf44871dd2f4e8686678ade8 Mon Sep 17 00:00:00 2001 From: Thomas Lamant Date: Sat, 15 Nov 2025 02:53:35 +0100 Subject: [PATCH 1/3] fix: update all button only updates a single app Signed-off-by: Thomas Lamant --- apps/settings/src/components/AppList.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 2ce13f32ef244..f6ce1514754e8 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -325,13 +325,14 @@ export default { OC.Notification.show(error) }) }, - updateAll() { + async updateAll() { const limit = pLimit(1) - this.apps - .filter(app => app.update) + const updateTasks = this.apps + .filter((app) => app.update) .map((app) => limit(() => { this.update(app.id) })) + await Promise.all(updateTasks) }, }, } From 3790c1ca6f80330a2673988a9d5123cfbe1c2123 Mon Sep 17 00:00:00 2001 From: Thomas Lamant Date: Tue, 18 Nov 2025 14:37:45 +0100 Subject: [PATCH 2/3] fix: `update()` function does not return a Promise Signed-off-by: Thomas Lamant --- apps/settings/src/mixins/AppManagement.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/settings/src/mixins/AppManagement.js b/apps/settings/src/mixins/AppManagement.js index acde23bfc08dc..284eb1dda8482 100644 --- a/apps/settings/src/mixins/AppManagement.js +++ b/apps/settings/src/mixins/AppManagement.js @@ -249,11 +249,11 @@ export default { }, update(appId) { if (this.app?.app_api) { - this.appApiStore.updateApp(appId) + return this.appApiStore.updateApp(appId) .then(() => { rebuildNavigation() }) .catch((error) => { showError(error) }) } else { - this.$store.dispatch('updateApp', { appId }) + return this.$store.dispatch('updateApp', { appId }) .catch((error) => { showError(error) }) .then(() => { rebuildNavigation() From e2057a153ddad6859726235ad44078193297bd2d Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Thu, 29 Jan 2026 11:34:20 +0000 Subject: [PATCH 3/3] chore(assets): Recompile assets Signed-off-by: nextcloud-command