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:
parent
1edd126a43
commit
6a110545e2
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue