diff --git a/public/app/features/alerting/unified/components/silences/SilencesTable.tsx b/public/app/features/alerting/unified/components/silences/SilencesTable.tsx
index e775a081b03..10b080c7cb8 100644
--- a/public/app/features/alerting/unified/components/silences/SilencesTable.tsx
+++ b/public/app/features/alerting/unified/components/silences/SilencesTable.tsx
@@ -186,7 +186,7 @@ function useColumns(alertManagerSourceName: string) {
renderCell: function renderStateTag({ data: { status } }) {
return ;
},
- size: '88px',
+ size: 4,
},
{
id: 'matchers',
@@ -194,7 +194,7 @@ function useColumns(alertManagerSourceName: string) {
renderCell: function renderMatchers({ data: { matchers } }) {
return ;
},
- size: 9,
+ size: 10,
},
{
id: 'alerts',
@@ -202,7 +202,7 @@ function useColumns(alertManagerSourceName: string) {
renderCell: function renderSilencedAlerts({ data: { silencedAlerts } }) {
return {silencedAlerts.length};
},
- size: 1,
+ size: 4,
},
{
id: 'schedule',
@@ -215,12 +215,11 @@ function useColumns(alertManagerSourceName: string) {
<>
{' '}
{startsAtDate?.format(dateDisplayFormat)} {'-'}
-
{endsAtDate?.format(dateDisplayFormat)}
>
);
},
- size: '150px',
+ size: 7,
},
];
if (showActions) {
@@ -250,7 +249,7 @@ function useColumns(alertManagerSourceName: string) {
);
},
- size: '147px',
+ size: 5,
});
}
return columns;