Skip to content

Commit

Permalink
fix icon size bug
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Nov 21, 2023
1 parent 40d45cf commit 55490e0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions assets/src/components/cd/clusters/runtime/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check failure on line 19 in assets/src/components/cd/clusters/runtime/columns.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected blank line before this statement
Expand All @@ -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

Check failure on line 45 in assets/src/components/cd/clusters/runtime/columns.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected blank line before this statement
Expand All @@ -57,7 +55,6 @@ export const runtimeColumns = [
columnHelperRuntime.accessor((row) => row?.service, {
id: 'git',
header: 'Repository',
meta: { truncate: true },
cell: ({ getValue }) => <GitPointer service={getValue()} />,
}),
]

0 comments on commit 55490e0

Please sign in to comment.