From 966aea2aa0de7b567ba38b6d0bc77dc102160a21 Mon Sep 17 00:00:00 2001 From: Salem Yaslem Date: Sat, 22 Jul 2023 05:39:14 +0300 Subject: [PATCH] feat: add header to mention source repo --- app.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/app.vue b/app.vue index 4623ee5..34ea93a 100644 --- a/app.vue +++ b/app.vue @@ -4,7 +4,7 @@ import { VueSelecto } from "vue3-selecto"; 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 type { iFile } from "composables/worker/7zip-manager" let display = useDisplay(); let drawer = ref(!display.mdAndDown.value); @@ -66,10 +66,10 @@ watchEffect(async () => { } // Experimental feature - if(videoExtensions.includes(filesManager.getFile(selectedPath.value)?.extension?.toLowerCase())) { + if (videoExtensions.includes(filesManager.getFile(selectedPath.value)?.extension?.toLowerCase())) { mediaBlobUrl.value = await filesManager.getFileBlobUrl(selectedPath.value) as string; console.log(mediaBlobUrl.value) - } + } }) const dragContainer = document.querySelector(".select-area"); @@ -117,6 +117,13 @@ function stepUp(path: string) { + + + @@ -170,7 +177,8 @@ function stepUp(path: string) { -