aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FileEntry/FileEntryName.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2023-10-13 16:49:54 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2023-10-17 11:19:02 +0200
commit16975ae45720945776155f026835cfdaf8491383 (patch)
tree6eb6db9dee1d86a7da98c46b10d0dd9ea004dcc7 /apps/files/src/components/FileEntry/FileEntryName.vue
parent694fd51cbaa18acbaa76a100010f00b904f96f7b (diff)
downloadnextcloud-server-16975ae45720945776155f026835cfdaf8491383.tar.gz
nextcloud-server-16975ae45720945776155f026835cfdaf8491383.zip
feat(files): grid view
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry/FileEntryName.vue')
-rw-r--r--apps/files/src/components/FileEntry/FileEntryName.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryName.vue b/apps/files/src/components/FileEntry/FileEntryName.vue
index d70eccec8a0..e54eacdbe9e 100644
--- a/apps/files/src/components/FileEntry/FileEntryName.vue
+++ b/apps/files/src/components/FileEntry/FileEntryName.vue
@@ -23,7 +23,6 @@
<!-- Rename input -->
<form v-if="isRenaming"
v-on-click-outside="stopRenaming"
- :aria-hidden="!isRenaming"
:aria-label="t('files', 'Rename file')"
class="files-list__row-rename"
@submit.prevent.stop="onRename">
@@ -98,6 +97,10 @@ export default Vue.extend({
type: Object as PropType<Node>,
required: true,
},
+ gridMode: {
+ type: Boolean,
+ default: false,
+ },
},
setup() {