Skip to content

Commit 1a4316f

Browse files
stanislavgeorgievzvonimirfras
authored andcommitted
fix(table): Expanded row doesn't filter
1 parent 5ca5f5a commit 1a4316f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/table/table.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ import { I18n } from "./../i18n/i18n.module";
336336
</ng-container>
337337
</tr>
338338
<tr
339-
*ngIf="model.rowsExpanded[i]"
339+
*ngIf="model.rowsExpanded[i] && !model.isRowFiltered(i)"
340340
class="bx--expandable-row-v2"
341341
[attr.data-child-row]="(model.rowsExpanded[i] ? 'true' : null)">
342342
<td [attr.colspan]="row.length + 2">

0 commit comments

Comments
 (0)