Skip to content

Commit 765d8e7

Browse files
committed
fixes
1 parent 54b668c commit 765d8e7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/components/ControlPlane/FluxList.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ export default function FluxList() {
5858
{
5959
Header: t('FluxList.tableStatusHeader'),
6060
accessor: 'status',
61+
width: 85,
62+
hAlign: 'Center',
6163
Cell: (cellData: CellData<FluxRow['isReady']>) =>
6264
cellData.cell.row.original?.isReady != null ? (
6365
<ResourceStatusCell
@@ -101,6 +103,8 @@ export default function FluxList() {
101103
{
102104
Header: t('FluxList.tableStatusHeader'),
103105
accessor: 'status',
106+
width: 85,
107+
hAlign: 'Center',
104108
Cell: (cellData: CellData<FluxRow['isReady']>) =>
105109
cellData.cell.row.original?.isReady != null ? (
106110
<ResourceStatusCell

src/components/ControlPlane/Providers.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ export function Providers() {
6161
{
6262
Header: t('Providers.tableHeaderInstalled'),
6363
accessor: 'installed',
64+
hAlign: 'Center',
65+
width: 85,
6466
Cell: (cellData: CellData<ProvidersRow['installed']>) =>
6567
cellData.cell.row.original?.installed != null ? (
6668
<ResourceStatusCell
@@ -74,6 +76,8 @@ export function Providers() {
7476
{
7577
Header: t('Providers.tableHeaderHealthy'),
7678
accessor: 'healthy',
79+
hAlign: 'Center',
80+
width: 85,
7781
Cell: (cellData: CellData<ProvidersRow['healthy']>) =>
7882
cellData.cell.row.original?.installed != null ? (
7983
<ResourceStatusCell

0 commit comments

Comments
 (0)