diff options
| author | Larvan2 <[email protected]> | 2023-05-17 08:15:17 +0000 |
|---|---|---|
| committer | Larvan2 <[email protected]> | 2023-05-17 08:15:17 +0000 |
| commit | b75c36f26d2fa7ffcdae610659662e4a7c59a2e8 (patch) | |
| tree | 763bfc1c1409848a2dc1b7781f8f22697d8b96e1 /src/components/ConnectionTable.tsx | |
| parent | b89bcf7f8f1d9181a9f328291fae047613ccbe14 (diff) | |
larvanz
Diffstat (limited to 'src/components/ConnectionTable.tsx')
| -rw-r--r-- | src/components/ConnectionTable.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ConnectionTable.tsx b/src/components/ConnectionTable.tsx index 6696fcd..e0c1c7f 100644 --- a/src/components/ConnectionTable.tsx +++ b/src/components/ConnectionTable.tsx @@ -104,9 +104,9 @@ function Table({ data }) { {...cell.getCellProps()} className={cx( s.td, - i % 2 === 0 ? s.odd : false, - j == 0 || (j >= 5 && j < 10) ? s.center : true - // j ==1 ? s.break : true + i % 2 == 0 ? s.odd : false, + j == 0 || (j >= 5 && j < 10) ? s.center : true, + j == 2 || j == 4 ? s.break : true )} > {renderCell(cell, locale)} |
