philon-
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
src/components/generic/Table/index.tsx
|
|
@ -146,8 +146,8 @@ export const Table = ({ headings, rows }: TableProps) => { |
|
|
<tr |
|
|
<tr |
|
|
key={rowKey} |
|
|
key={rowKey} |
|
|
className={` |
|
|
className={` |
|
|
bg-white dark:bg-white/10 |
|
|
bg-white dark:bg-slate-900 |
|
|
odd:bg-slate-800/70 dark:even:bg-slate-900/70 |
|
|
odd:bg-slate-200/40 dark:odd:bg-slate-800/40 |
|
|
`}
|
|
|
`}
|
|
|
> |
|
|
> |
|
|
{row.map((item, cellIndex) => { |
|
|
{row.map((item, cellIndex) => { |
|
|
|