1
0
Fork 0
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:
shaji618 2024-10-20 16:42:17 -04:00 committed by GitHub
parent 092012a487
commit f58c863007
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}>