File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/components/ControlPlane Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments