summaryrefslogtreecommitdiff
path: root/src/components/ConnectionTable.tsx
diff options
context:
space:
mode:
authorLarvan2 <[email protected]>2023-05-17 08:15:17 +0000
committerLarvan2 <[email protected]>2023-05-17 08:15:17 +0000
commitb75c36f26d2fa7ffcdae610659662e4a7c59a2e8 (patch)
tree763bfc1c1409848a2dc1b7781f8f22697d8b96e1 /src/components/ConnectionTable.tsx
parentb89bcf7f8f1d9181a9f328291fae047613ccbe14 (diff)
larvanz
Diffstat (limited to 'src/components/ConnectionTable.tsx')
-rw-r--r--src/components/ConnectionTable.tsx6
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)}