mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
Fix the colspan when a DataTable is Expandable and Selectable (#618)
This commit is contained in:
parent
47c79b16c7
commit
081783c719
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@
|
|||
parentRowId = null;
|
||||
}}"
|
||||
>
|
||||
<TableCell colspan="{headers.length + 1}">
|
||||
<TableCell colspan="{selectable ? headers.length + 2 : headers.length + 1}">
|
||||
<div class:bx--child-row-inner-container="{true}">
|
||||
<slot name="expanded-row" row="{row}" />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue