Skip to content

Commit

Permalink
15.1.2 fix duplicate bottom border
Browse files Browse the repository at this point in the history
  • Loading branch information
wobkenh committed Nov 22, 2022
1 parent 0650e3b commit ba98479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/simplemattable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simplemattable",
"version": "15.1.1",
"version": "15.1.2",
"description": "A simplified, declarative table-library using @angular/material's MatTable with form capabilities for adding/editing/deleting data",
"author": "Henning Wobken",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@

<!-- Expanded Content Column - The detail row is made up of this one column that spans across all columns -->
<ng-container matColumnDef="expandedDetail" *ngIf="detailRowComponent">
<!-- border-bottom-width: 0 to avoid duplicate border at the bottom -->
<td mat-cell *matCellDef="let element" [attr.colspan]="displayedColumns.length" style="border-bottom-width: 0">
<td mat-cell *matCellDef="let element" [attr.colspan]="displayedColumns.length">
<div
[@detailExpand]="element === expandedElement ? 'expanded' : 'collapsed'"
class="smt-element-detail">
Expand Down

0 comments on commit ba98479

Please sign in to comment.