From b75c36f26d2fa7ffcdae610659662e4a7c59a2e8 Mon Sep 17 00:00:00 2001 From: Larvan2 <78135608+Larvan2@users.noreply.github.com> Date: Wed, 17 May 2023 08:15:17 +0000 Subject: larvanz --- src/components/ConnectionTable.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/ConnectionTable.tsx') 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)} -- cgit v1.3.1