summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ConnectionTable.tsx4
1 files changed, 2 insertions, 2 deletions
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) => (
<div
{...column.getHeaderProps(column.getSortByToggleProps())}
- className={index >= 5 && index < 10 ? s.thdu : s.th}
+ className={index == 0 || (index >= 5 && index < 10) ? s.thdu : s.th}
>
<span>{t(column.render('Header'))}</span>
<span className={s.sortIconContainer}>
@@ -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)}