diff --git a/frontend/src/components/prompts/FileList.vue b/frontend/src/components/prompts/FileList.vue index 7a5c9f56..f4f60b21 100644 --- a/frontend/src/components/prompts/FileList.vue +++ b/frontend/src/components/prompts/FileList.vue @@ -21,6 +21,16 @@ {{ $t("prompts.currentlyNavigating") }} {{ nav }}.

+ @@ -133,6 +143,17 @@ export default { this.selected = event.currentTarget.dataset.url; this.$emit("update:selected", this.selected); }, + createDir: async function (){ + this.$store.commit('showHover', { + prompt: 'newDir', + action: null, + confirm: null, + props:{ + redirect: false, + base: this.current === this.$route.path ? null : this.current, + } + }) + } }, }; diff --git a/frontend/src/components/prompts/Move.vue b/frontend/src/components/prompts/Move.vue index fb28e7bd..9508ebfd 100644 --- a/frontend/src/components/prompts/Move.vue +++ b/frontend/src/components/prompts/Move.vue @@ -9,16 +9,6 @@
-