From 89ad81b15a282880a742f1f702b5e2c835ae9e37 Mon Sep 17 00:00:00 2001 From: Sonia Aguilar <33540275+soniaAguilarPeiron@users.noreply.github.com> Date: Tue, 28 Feb 2023 12:50:58 +0100 Subject: [PATCH] Alerting: Fix width in alerts table columns on EditGroupModal (#63845) Fix width in alerts table columns on EditGroupModal --- .../unified/components/rules/EditRuleGroupModal.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/app/features/alerting/unified/components/rules/EditRuleGroupModal.tsx b/public/app/features/alerting/unified/components/rules/EditRuleGroupModal.tsx index 27b6d77b3aa..78581c3d3cd 100644 --- a/public/app/features/alerting/unified/components/rules/EditRuleGroupModal.tsx +++ b/public/app/features/alerting/unified/components/rules/EditRuleGroupModal.tsx @@ -146,11 +146,11 @@ export const RulesForGroupTable = ({ rulesWithoutRecordingRules }: { rulesWithou renderCell: ({ data: { forDuration } }) => { return <>{forDuration}; }, - size: 0.2, + size: 0.5, }, { id: 'numberEvaluations', - label: '#Evaluations', + label: '#Eval', renderCell: ({ data: { evaluationsToFire: numberEvaluations } }) => { if (unknownCurrentInterval) { return ; @@ -167,7 +167,7 @@ export const RulesForGroupTable = ({ rulesWithoutRecordingRules }: { rulesWithou } } }, - size: 0.6, + size: 0.4, }, ]; }, [currentInterval, unknownCurrentInterval]); @@ -397,7 +397,7 @@ export function EditCloudGroupModal(props: ModalProps): React.ReactElement { <>
List of rules that belong to this group
- #Evaluations column represents the number of evaluations needed before alert starts firing. + #Eval column represents the number of evaluations needed before alert starts firing.