Fix the colspan when a DataTable is Expandable and Selectable (#618)

This commit is contained in:
mabentley85 2021-04-30 16:24:35 -07:00 committed by GitHub
commit 081783c719
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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