diff options
| author | Larvan2 <[email protected]> | 2023-05-17 22:48:03 +0800 |
|---|---|---|
| committer | Larvan2 <[email protected]> | 2023-05-17 22:48:03 +0800 |
| commit | d199d5b882731b4f03ec64d72efbee1bd0ef17cb (patch) | |
| tree | 5a9ae5a12078ef513ef577607d2a56707b214d7c /src/components/ConnectionTable.tsx | |
| parent | fea819eb5bb1ad9e63352b61a633fc63ed783248 (diff) | |
Revert "larvanz"
This reverts commit b75c36f26d2fa7ffcdae610659662e4a7c59a2e8.
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 e0c1c7f..6696fcd 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 == 2 || j == 4 ? s.break : true + i % 2 === 0 ? s.odd : false, + j == 0 || (j >= 5 && j < 10) ? s.center : true + // j ==1 ? s.break : true )} > {renderCell(cell, locale)} |
