mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 01:27:07 +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 (
|
return (
|
||||||
<Box className={styles.container}>
|
<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}>
|
<Table.Thead hidden={tableStyles?.hideHeader}>
|
||||||
{instance.getHeaderGroups().map((headerGroup) => (
|
{instance.getHeaderGroups().map((headerGroup) => (
|
||||||
<Table.Tr key={headerGroup.id}>
|
<Table.Tr key={headerGroup.id}>
|
||||||
|
|
Loading…
Reference in a new issue