From 5beb0d626d09f44ce7b2f5ca941fba83c66ed947 Mon Sep 17 00:00:00 2001 From: Sonia Aguilar <33540275+soniaAguilarPeiron@users.noreply.github.com> Date: Wed, 14 May 2025 17:56:28 +0200 Subject: [PATCH] Alerting: Enable pause and unpause bulk actions in the alert list view (#105363) --- .../components/folder-bulk-actions/FolderBulkActionsButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/components/folder-bulk-actions/FolderBulkActionsButton.tsx b/public/app/features/alerting/unified/components/folder-bulk-actions/FolderBulkActionsButton.tsx index 728c1cb4170..224597eff2b 100644 --- a/public/app/features/alerting/unified/components/folder-bulk-actions/FolderBulkActionsButton.tsx +++ b/public/app/features/alerting/unified/components/folder-bulk-actions/FolderBulkActionsButton.tsx @@ -21,7 +21,7 @@ interface Props { export const FolderBulkActionsButton = ({ folderUID }: Props) => { const [pauseSupported, pauseAllowed] = useFolderBulkActionAbility(FolderBulkAction.Pause); - const canPause = pauseSupported && pauseAllowed && false; // lets disable pause for now + const canPause = pauseSupported && pauseAllowed; const [deleteSupported, deleteAllowed] = useFolderBulkActionAbility(FolderBulkAction.Delete); const canDelete = deleteSupported && deleteAllowed; const [pauseFolder, updateState] = alertingFolderActionsApi.endpoints.pauseFolder.useMutation();