mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fix: Dark mode on table's Striped and Striped & Bordered table type mode (#4611)
This commit is contained in:
parent
1853a3233e
commit
99842877b4
1 changed files with 5 additions and 1 deletions
|
|
@ -635,7 +635,11 @@ export function Table({
|
|||
)}
|
||||
|
||||
<div className="table-responsive jet-data-table">
|
||||
<table {...getTableProps()} className={`table table-vcenter table-nowrap ${tableType}`} style={computedStyles}>
|
||||
<table
|
||||
{...getTableProps()}
|
||||
className={`table table-vcenter table-nowrap ${tableType} ${darkMode && 'table-dark'}`}
|
||||
style={computedStyles}
|
||||
>
|
||||
<thead>
|
||||
{headerGroups.map((headerGroup, index) => (
|
||||
<DragDropContext
|
||||
|
|
|
|||
Loading…
Reference in a new issue