Merge branch 'development'

This commit is contained in:
Methapon2001 2023-12-08 13:46:08 +07:00
commit 450ae5622b
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
2 changed files with 1 additions and 2 deletions

View file

@ -276,7 +276,6 @@ const onRowClick = (evt: Event, row: TreeDataFolder, index: number) => {
</script>
<template>
<q-btn @click="refaceFile(currentPath)">Test</q-btn>
<div class="q-mt-md">
<div class="q-gutter-sm">
<div

View file

@ -97,7 +97,7 @@ async function ensureDelete(pathname: string) {
.catch((e) => console.error(e));
const io = getInstance();
io?.send("FileDelete", { pathname });
io?.emit("FileDelete", { pathname });
return true;
}