Skip to content

Commit 3b05016

Browse files
timlee12xueappRobertoRueMelonitaylrzhang
committed
pushing small edit to cluster table active status
Co-authored-by: Snow X. Bai <[email protected]> Co-authored-by: Roberto Meloni <[email protected]> Co-authored-by: Taylor Zhang <[email protected]>
1 parent 213e051 commit 3b05016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/ClusterTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const ClusterTable: React.FC<ClusterTableProps> = React.memo(({ region }) => {
7272
</div>
7373
</TableCell>
7474
{/* <TableCell className={cluster.status === 'active' ? classes.activeCell : undefined}>testactive</TableCell> */}
75-
<TableCell className={classes.body}>{activeServices().length ? 'active' : 'inactive'}</TableCell>
75+
<TableCell className={activeServices().length ? classes.activeCell : undefined}>{activeServices().length ? 'ACTIVE' : 'INACTIVE'}</TableCell>
7676
<TableCell className={classes.body}>{isLoading ? 'Loading...' : Object.keys(awsEcsData).length - 1}</TableCell>
7777
<TableCell className={classes.body}>{String(activeServices().length) + '/' + String(Object.keys(awsEcsData).length - 1)}</TableCell>
7878

0 commit comments

Comments
 (0)