fix: bugs

This commit is contained in:
sajjadtalkhabi
2026-07-30 18:53:56 +03:30
parent bc9ce01d3f
commit 8fefb4568b
16 changed files with 529 additions and 52 deletions
@@ -19,6 +19,7 @@
:value="stat.value"
:unit="stat.unit"
:subtitle="stat.subtitle"
:to="stat.to"
/>
</div>
</section>
@@ -91,6 +92,7 @@ const requestStats = computed(() => {
value: toFaDigits(stats.totalRequests ?? 0),
unit: 'درخواست',
subtitle: 'ثبت شده',
to: { name: 'missionary-requests' },
},
{
icon: 'check-circle',
@@ -98,6 +100,7 @@ const requestStats = computed(() => {
value: toFaDigits(stats.acceptedRequests ?? 0),
unit: 'درخواست',
subtitle: 'پذیرفته شده',
to: { name: 'missionary-requests' },
},
{
icon: 'clock',
@@ -105,6 +108,7 @@ const requestStats = computed(() => {
value: toFaDigits(stats.pendingRequests ?? 0),
unit: 'درخواست',
subtitle: 'در انتظار',
to: { name: 'missionary-requests' },
},
]
})