mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 17:17:12 +00:00
Added highlight when hovering table rows
This commit is contained in:
parent
092012a487
commit
f58c863007
1 changed files with 5 additions and 1 deletions
|
@ -98,7 +98,11 @@ export default function BaseTable<T extends object>(props: BaseTableProps<T>) {
|
|||
|
||||
return (
|
||||
<Box className={styles.container}>
|
||||
<Table className={styles.table} striped={tableStyles?.striped ?? true}>
|
||||
<Table
|
||||
className={styles.table}
|
||||
highlightOnHover
|
||||
striped={tableStyles?.striped ?? true}
|
||||
>
|
||||
<Table.Thead hidden={tableStyles?.hideHeader}>
|
||||
{instance.getHeaderGroups().map((headerGroup) => (
|
||||
<Table.Tr key={headerGroup.id}>
|
||||
|
|
Loading…
Reference in a new issue