Display problematic transactions #53

Merged
jacob1123 merged 16 commits from problematic-transactions into master 2022-04-23 13:32:39 +02:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit e82ff5bfb5 - Show all commits

View File

@ -34,7 +34,7 @@ onMounted(() => {
<div class="grid grid-cols-[1fr_auto]">
<div>
<h1 class="inline">
All Accounts
Problematic Transactions
</h1>
</div>
</div>

View File

@ -40,7 +40,7 @@ function toggleMenu() {
<router-link :to="'/budget/' + CurrentBudgetID + '/budgeting'">Budget</router-link>
<br>
<!--<router-link :to="'/budget/'+CurrentBudgetID+'/reports'">Reports</router-link>-->
<router-link :to="'/budget/'+CurrentBudgetID+'/all-accounts'">All Accounts</router-link>
<router-link :to="'/budget/'+CurrentBudgetID+'/problematic-transactions'">Problematic Transactions</router-link>
</span>
<li class="bg-slate-200 dark:bg-slate-700 my-2 p-2 px-3">
<div class="flex flex-row justify-between font-bold">

View File

@ -65,8 +65,8 @@ const routes = [
meta: { requiresAuth: true },
},
{
path: "/budget/:budgetid/all-accounts",
name: "All Accounts",
path: "/budget/:budgetid/problematic-transactions",
name: "Problematic Transactions",
components: { default: AllAccounts, sidebar: BudgetSidebar },
props: true,
meta: { requiresAuth: true },