From 2156869ce998655508d0aaecc1fb0318c9c77be2 Mon Sep 17 00:00:00 2001 From: Larvan2 <78135608+Larvan2@users.noreply.github.com> Date: Thu, 13 Apr 2023 07:00:16 +0000 Subject: adjust the first colum --- src/components/ConnectionTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/components/ConnectionTable.tsx b/src/components/ConnectionTable.tsx index b0ff3e6..c0ce704 100644 --- a/src/components/ConnectionTable.tsx +++ b/src/components/ConnectionTable.tsx @@ -74,7 +74,7 @@ function Table({ data }) { {headerGroup.headers.map((column, index) => (
= 5 && index < 10 ? s.thdu : s.th} + className={index == 0 || (index >= 5 && index < 10) ? s.thdu : s.th} > {t(column.render('Header'))} @@ -96,7 +96,7 @@ function Table({ data }) { className={cx( s.td, i % 2 === 0 ? s.odd : false, - j >= 5 && j < 10 ? s.du : true + j == 0 || (j >= 5 && j < 10) ? s.du : true )} > {renderCell(cell, locale)} -- cgit v1.3.1