diff --git a/app.vue b/app.vue index e50a53a..7e9a888 100644 --- a/app.vue +++ b/app.vue @@ -5,6 +5,7 @@ import { useDisplay } from 'vuetify/lib/framework.mjs'; import { HistoryManager } from './composables/history-manager'; import { FilesManager } from './composables/files-manager'; import type { iFile } from "composables/worker/7zip-manager" +import { videoExtensions, binaryExtensions } from '#imports'; let display = useDisplay(); let drawer = ref(!display.mdAndDown.value); @@ -57,6 +58,8 @@ watchEffect(async () => { const file = filesManager.getFile(selectedPath.value); filesGridList.value = file?.content; + console.log("Selected file", file); + selectedList.value = []; for (const selectedElement of document.querySelectorAll(".selectable.selected")) { selectedElement.classList.remove("selected"); @@ -193,9 +196,13 @@ function stepUp(path: string) { +