fix_error
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-14 19:21:21 +03:00
parent ab94ad69a5
commit 04ea1f83c6
39 changed files with 2326 additions and 451 deletions

View File

@@ -69,17 +69,29 @@
{{item.description}}
</q-item-label>
</q-item-section>
<q-item-section side class="text-caption ">
<div class="flex items-center column">
<div class="flex items-center">
<q-icon name="mdi-chat-outline"/>
<span>{{ item.chat_count }} </span>
<q-item-section side top>
<q-item-label lines="1" class="text-caption">
<div class="flex items-center">
<div class="flex items-center">
<q-icon name="mdi-chat-outline"/>
<span>{{ item.chat_count }} </span>
</div>
<div class="flex items-center q-ml-xs">
<q-icon name="mdi-account-outline"/>
<span>{{ item.user_count }}</span>
</div>
</div>
<div class="flex items-center">
<q-icon name="mdi-account-outline"/>
<span>{{ item.user_count }}</span>
</div>
</div>
</q-item-label>
<q-item-label>
<q-btn
color="grey"
size="sm"
dense flat round
icon="mdi-pencil"
class="q-ml-sm"
@click.stop="editProject(item.id)"
/>
</q-item-label>
</q-item-section>
</q-item>
</q-slide-item>
@@ -225,6 +237,10 @@
await router.push({ name: 'chats', params: { id }})
}
async function editProject (id: number) {
await router.push({ name: 'project_info', params: { id }})
}
async function goAccount () {
await router.push({ name: 'account' })
}