Rename Pending Approvals card from "Pending Expense Approvals"

Both expense and income entries land in the same pending list (the
backend's /entries/pending endpoint already returns all pending
transactions regardless of type, and approve/reject is type-agnostic),
so the expense-specific title was misleading once income approval
shipped in #13.
This commit is contained in:
Padreug 2026-05-17 15:21:46 +02:00
commit 6a110545e2

View file

@ -69,10 +69,10 @@
</template> </template>
</q-banner> </q-banner>
<!-- Pending Expense Entries (Super User Only) --> <!-- Pending Entries (Super User Only) -->
<q-card v-if="isSuperUser && pendingExpenses.length > 0"> <q-card v-if="isSuperUser && pendingExpenses.length > 0">
<q-card-section> <q-card-section>
<h6 class="q-my-none q-mb-md">Pending Expense Approvals</h6> <h6 class="q-my-none q-mb-md">Pending Approvals</h6>
<q-list separator> <q-list separator>
<q-item v-for="entry in pendingExpenses" :key="entry.id"> <q-item v-for="entry in pendingExpenses" :key="entry.id">
<q-item-section avatar> <q-item-section avatar>