feat: update badge to display total stats count
This commit is contained in:
parent
dc78df47bd
commit
f7735c2d49
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue