Make filemanager the quickaction for volumes

This commit is contained in:
Johannes Zellner
2026-01-06 21:15:19 +01:00
parent 806309fc33
commit d83712b093
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -39,7 +39,6 @@ function createActionMenu(volume) {
icon: 'fa-solid fa-pencil-alt',
label: t('main.action.edit'),
visible: volume.mountType === 'sshfs' || volume.mountType === 'cifs' || volume.mountType === 'nfs',
quickAction: true,
action: openVolumeDialog.bind(null, volume),
}, {
separator: true,
@@ -52,6 +51,7 @@ function createActionMenu(volume) {
}, {
icon: 'fa-solid fa-folder',
label: t('volumes.openFileManagerActionTooltip'),
quickAction: true,
target: '_blank',
href: '/filemanager.html#/home/volume/' + volume.id,
}, {