style(CategoriesStats): typo

This commit is contained in:
Simon Vieille 2025-02-09 20:12:10 +01:00
commit 01dacc4417

View file

@ -1,7 +1,7 @@
<template>
<div class="stats">
<div class="d-flex justify-content-between mb-2">
<h5 class="mb-2">Catégories</h5>
<h5 class="mb-2">Catégories - Statistiques des débits</h5>
<BFormSelect
id="order"
v-model="order"
@ -19,17 +19,17 @@
<BTh
width="170px"
class="text-end"
>Somme totale</BTh
>Total</BTh
>
<BTh
width="200px"
width="250px"
class="text-end"
>Montant moyen</BTh
>Débit moyen / transaction</BTh
>
<BTh
width="200px"
width="210px"
class="text-end"
>Moyenne mensuelle</BTh
>Débit moyen / mois</BTh
>
<BTh
width="170px"
@ -80,9 +80,9 @@ import {renderCategory, renderEuro} from '../../lib/renderers'
const order = ref(getStorage('dashboard:debitAverage:order', 'sum'))
const orders = [
{value: 'sum', text: 'Somme total'},
{value: 'average', text: 'Montant moyen'},
{value: 'monthAverage', text: 'Moyenne mensuelle'},
{value: 'sum', text: 'Total'},
{value: 'average', text: 'Débit moyen / transaction'},
{value: 'monthAverage', text: 'Débit moyen / mois'},
{value: 'count', text: 'Transactions'},
]