aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FilesListVirtual.vue
diff options
context:
space:
mode:
authorGrigorii K. Shartsev <me@shgk.me>2023-11-17 13:26:39 +0100
committerGrigorii K. Shartsev <me@shgk.me>2023-11-18 00:16:13 +0100
commit346c6173f26536a5136a2a6eb13c9cc83e203183 (patch)
tree9555c9bd5f8b80885cb33c4d24882c1c1bc5b3cd /apps/files/src/components/FilesListVirtual.vue
parentc18c6c436203a680ba9d0402441f65cfc247db74 (diff)
downloadnextcloud-server-346c6173f26536a5136a2a6eb13c9cc83e203183.tar.gz
nextcloud-server-346c6173f26536a5136a2a6eb13c9cc83e203183.zip
fix(files): make table view a valid html table
<div> is not allowed as a <table> child Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'apps/files/src/components/FilesListVirtual.vue')
-rw-r--r--apps/files/src/components/FilesListVirtual.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/files/src/components/FilesListVirtual.vue b/apps/files/src/components/FilesListVirtual.vue
index 697ecce641a..a196836f3f9 100644
--- a/apps/files/src/components/FilesListVirtual.vue
+++ b/apps/files/src/components/FilesListVirtual.vue
@@ -305,12 +305,11 @@ export default Vue.extend({
--clickable-area: 44px;
--icon-preview-size: 32px;
- display: block;
overflow: auto;
height: 100%;
will-change: scroll-position;
- &::v-deep {
+ & :deep() {
// Table head, body and footer
tbody {
will-change: padding;
@@ -337,6 +336,10 @@ export default Vue.extend({
flex-direction: column;
}
+ .files-list__table {
+ display: block;
+ }
+
.files-list__thead,
.files-list__tfoot {
display: flex;