From 4e1396e7a797d1be88fba14937c74ebbb82eb464 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 1 Oct 2025 10:43:48 +0200 Subject: [PATCH] Hide backup integrity menu action for the moment --- dashboard/src/components/app/Backups.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dashboard/src/components/app/Backups.vue b/dashboard/src/components/app/Backups.vue index 9a2992305..c0461046f 100644 --- a/dashboard/src/components/app/Backups.vue +++ b/dashboard/src/components/app/Backups.vue @@ -84,13 +84,13 @@ function onActionMenu(backup, event) { label: t('app.backups.backups.restoreTooltip'), disabled: !!props.app.taskId || props.app.runState === 'stopped', action: onRestore.bind(null, backup), - }, { - separator: true, - }, { - icon: 'fa-solid fa-key', - label: t('app.backups.backups.checkIntegrity'), - visible: props.app.accessLevel === 'admin', - action: onCheckIntegrity.bind(null, backup), + // }, { + // separator: true, + // }, { + // icon: 'fa-solid fa-key', + // label: t('app.backups.backups.checkIntegrity'), + // visible: props.app.accessLevel === 'admin', + // action: onCheckIntegrity.bind(null, backup), }]; actionMenuElement.value.open(event, event.currentTarget);