From c8e34ac522d9da0f79519cb0b2996e6e94555fab Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 10 Sep 2025 11:12:22 +0200 Subject: [PATCH] hide separator for non-editable volume types --- dashboard/src/views/VolumesView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/src/views/VolumesView.vue b/dashboard/src/views/VolumesView.vue index 8785c45c5..c59ff5c3f 100644 --- a/dashboard/src/views/VolumesView.vue +++ b/dashboard/src/views/VolumesView.vue @@ -41,6 +41,7 @@ function onActionMenu(volume, event) { action: openVolumeDialog.bind(null, volume), }, { separator: true, + visible: volume.mountType === 'sshfs' || volume.mountType === 'cifs' || volume.mountType === 'nfs', }, { icon: 'fa-solid fa-sync-alt', label: t('volumes.remountActionTooltip'),