From 2f71e69898dba39c2ec872337bb88ba69b121f27 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Mon, 23 Sep 2024 21:43:33 +0200 Subject: [PATCH] fix: app version downloads --- changelog/unreleased/bugfix-app-version-downloads | 5 +++++ packages/web-app-app-store/src/components/AppActions.vue | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/bugfix-app-version-downloads diff --git a/changelog/unreleased/bugfix-app-version-downloads b/changelog/unreleased/bugfix-app-version-downloads new file mode 100644 index 00000000000..30dee6ed252 --- /dev/null +++ b/changelog/unreleased/bugfix-app-version-downloads @@ -0,0 +1,5 @@ +Bugfix: App version downloads + +We've fixed an issue in the app store where downloading specific versions of an app would fail. + +https://github.com/owncloud/web/pull/11633 diff --git a/packages/web-app-app-store/src/components/AppActions.vue b/packages/web-app-app-store/src/components/AppActions.vue index 0a0b4304af7..fba61c6f0ba 100644 --- a/packages/web-app-app-store/src/components/AppActions.vue +++ b/packages/web-app-app-store/src/components/AppActions.vue @@ -5,7 +5,7 @@ :key="`app-action-${action.name}`" size="small" :action="action" - :action-options="{ app, ...(version && version) }" + :action-options="{ app, version }" />