mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
fix(data-table): include border style for non-expandable rows
Fixes #861
This commit is contained in:
parent
ed873324e5
commit
bebc4974c3
1 changed files with 2 additions and 1 deletions
|
@ -345,7 +345,8 @@
|
||||||
<TableCell
|
<TableCell
|
||||||
class="bx--table-expand"
|
class="bx--table-expand"
|
||||||
headers="expand"
|
headers="expand"
|
||||||
data-previous-value="{expandedRows[row.id]
|
data-previous-value="{!nonExpandableRowIds.includes(row.id) &&
|
||||||
|
expandedRows[row.id]
|
||||||
? 'collapsed'
|
? 'collapsed'
|
||||||
: undefined}"
|
: undefined}"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue