From f0e70a97bcdf4c0d8f5e07946b3e3d5225b31b79 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 17 Oct 2025 18:32:31 +0200 Subject: [PATCH] Move configure action to the top of the app list menu --- dashboard/src/views/AppsView.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dashboard/src/views/AppsView.vue b/dashboard/src/views/AppsView.vue index 90e322d50..cbaeb7971 100644 --- a/dashboard/src/views/AppsView.vue +++ b/dashboard/src/views/AppsView.vue @@ -109,6 +109,12 @@ function onActionMenu(app, event) { }, { separator: true, visible: !!app.updateInfo, + }, { + icon: 'fa-solid fa-cog', + label: t('app.configureTooltip'), + href: `#/app/${app.id}/info`, + }, { + separator: true, }, { icon: 'fa-solid fa-align-left', label: t('app.logsActionTooltip'), @@ -127,10 +133,6 @@ function onActionMenu(app, event) { visible: !!app.manifest?.addons?.localstorage, target: '_blank', href: '/filemanager.html#/home/app/' + app.id, - }, { - icon: 'fa-solid fa-cog', - label: t('app.configureTooltip'), - href: `#/app/${app.id}/info`, }]; actionMenuElement.value.open(event, event.currentTarget);