From 55490e08076a0ea56e2da2204d2ed72d4339194b Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Tue, 21 Nov 2023 16:17:57 -0500 Subject: [PATCH] fix icon size bug --- assets/src/components/cd/clusters/runtime/columns.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/assets/src/components/cd/clusters/runtime/columns.tsx b/assets/src/components/cd/clusters/runtime/columns.tsx index 0985761009..e59a52d365 100644 --- a/assets/src/components/cd/clusters/runtime/columns.tsx +++ b/assets/src/components/cd/clusters/runtime/columns.tsx @@ -14,7 +14,6 @@ export const runtimeColumns = [ columnHelperRuntime.accessor((row) => row?.addon, { id: 'name', header: 'Name', - meta: { truncate: true }, cell: ({ getValue, row: { original } }) => { const addon = getValue() if (!addon) return null @@ -41,7 +40,6 @@ export const runtimeColumns = [ columnHelperRuntime.accessor((row) => row?.addonVersion, { id: 'blocking', header: 'Blocks Upgrade', - meta: { truncate: true }, cell: ({ getValue }) => { const addonVersion = getValue() if (!addonVersion?.blocking) return null @@ -57,7 +55,6 @@ export const runtimeColumns = [ columnHelperRuntime.accessor((row) => row?.service, { id: 'git', header: 'Repository', - meta: { truncate: true }, cell: ({ getValue }) => , }), ]