Skip to content

Commit

Permalink
Fixed empty rows in quick grid
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n committed Nov 24, 2024
1 parent 0c83370 commit 4f454bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/Web/AdminPanel/Styles/Tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ th input {
opacity: 0;
animation-fill-mode: forwards;
}
}

.quickgrid tbody tr:has(td:empty) {
display: none;
}
4 changes: 4 additions & 0 deletions src/Web/AdminPanel/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -10456,6 +10456,10 @@ tr:nth-child(50) {
animation-fill-mode: forwards;
}

.quickgrid tbody tr:has(td:empty) {
display: none;
}

app {
position: relative;
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/Web/AdminPanel/wwwroot/css/site.min.css

Large diffs are not rendered by default.

0 comments on commit 4f454bd

Please sign in to comment.