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