feat: update badge to display total stats count

This commit is contained in:
puriphatt 2025-02-25 14:09:05 +07:00
parent dc78df47bd
commit f7735c2d49

View file

@ -158,7 +158,7 @@ watch(
color: hsl(var(--info-bg)); color: hsl(var(--info-bg));
" "
> >
{{ stats.Pending + stats.Success || 0 }} {{ Object.values(stats).reduce((sum, value) => sum + value, 0) || 0 }}
</q-badge> </q-badge>
<q-btn <q-btn
class="q-ml-sm" class="q-ml-sm"