Skip to content

Commit

Permalink
fix(admin-ui): Fix header overlap on empty data tables
Browse files Browse the repository at this point in the history
Fixes #2323, closes #2325
  • Loading branch information
michaelbromley committed Aug 10, 2023
1 parent 1f507fa commit ada153e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : '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,6 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : '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,6 @@
<table
class=""
[class.no-select]="disableSelect"
[style.table-layout]="!items?.length ? 'fixed' : 'inherit'"
>
<thead [class.items-selected]="selectionManager?.selection.length">
<tr class="heading-row">
Expand Down

0 comments on commit ada153e

Please sign in to comment.