Skip to content

Commit

Permalink
Change the table-layout to inherit always for better design when have…
Browse files Browse the repository at this point in the history
… empty table (#2323)
  • Loading branch information
oidt authored Jul 28, 2023
1 parent cf20ade commit b0b5a36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : 'inherit'"
[style.table-layout]="inherit"
>
<thead [class.items-selected]="selectionManager?.selection.length">
<tr class="heading-row">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : 'inherit'"
[style.table-layout]="inherit"
>
<thead [class.items-selected]="selectionManager?.selection.length">
<tr class="heading-row">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : 'inherit'"
[style.table-layout]="inherit"
>
<thead [class.items-selected]="selectionManager?.selection.length">
<tr class="heading-row">
Expand Down

0 comments on commit b0b5a36

Please sign in to comment.