before_redesign

This commit is contained in:
2026-02-13 15:06:52 +03:00
parent 53ca63ec91
commit 09d7812a7a
48 changed files with 1685 additions and 678 deletions

View File

@@ -93,14 +93,13 @@
<div
v-if="archiveProjects.length !== 0"
class="flex column items-center w100"
:class="showArchive ? 'bg-grey-12' : ''"
>
<q-btn
class="w100 rotate-icon-btn"
color="grey"
flat
no-caps
@click="showArchive=!showArchive"
@click="showArchive = !showArchive"
icon-right="arrow_drop_down"
:class="{ 'rotate-icon': showArchive }"
>
@@ -270,9 +269,7 @@
})
onMounted(async () => {
if (!projectsStore.isInit) {
await projectsStore.init()
}
if (!projectsStore.isInit) await projectsStore.init()
})
watch(showDialogRestoreArchive, (newD :boolean) => {