before update auth

This commit is contained in:
2025-08-18 13:21:54 +03:00
parent 04ea1f83c6
commit 3b628cbfb3
12 changed files with 41 additions and 286 deletions

View File

@@ -1,9 +1,9 @@
<template>
<pn-page-card>
<template #title>
{{ $t('projects__projects') }}
{{ $t('projects__title') }}
<q-btn
@click="goAccount()"
@click="goAccount"
flat rounded
no-caps
icon-right="mdi-chevron-right"
@@ -18,10 +18,10 @@
<pn-scroll-list>
<template
#card-body-header
v-if="projects.length !== 0 || archiveProjects.length !== 0"
v-if="projects.length!==0 || archiveProjects.length!==0"
>
<q-input
v-if="projects.length !== 0"
v-if="projects.length!== 0"
v-model="searchProject"
clearable
clear-icon="close"
@@ -33,9 +33,9 @@
<q-icon name="mdi-magnify" />
</template>
</q-input>
</template>
</template>
<q-list separator v-if="projects.length !== 0">
<q-list separator v-if="projects.length!==0">
<template
v-for = "item in activeProjects"
:key="item.id"
@@ -66,7 +66,7 @@
caption lines="2"
style="max-width: -webkit-fill-available; white-space: pre-line"
>
{{item.description}}
{{ item.description }}
</q-item-label>
</q-item-section>
<q-item-section side top>
@@ -149,7 +149,7 @@
caption lines="2"
style="max-width: -webkit-fill-available; white-space: pre-line"
>
{{item.description}}
{{ item.description }}
</q-item-label>
</q-item-section>
</q-item>
@@ -158,7 +158,7 @@
</div>
</div>
<pn-onboard-btn
v-if="projects.length === 0 && projectsInit"
v-if="projects.length===0 && projectsInit"
icon="mdi-briefcase-plus-outline"
:message1="$t('projects__lets_start')"
:message2="$t('projects__lets_start_description')"