New eveal #32

Merged
Sirttas merged 115 commits from new-eveal into main 2026-07-14 17:15:11 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 5506125b2e - Show all commits
+2 -1
View File
@@ -2,13 +2,14 @@
import {RouterView} from 'vue-router';
import {EditLedgerModal, useLedgersStore} from "@/ledger";
import {ref} from "vue";
import {processingApi} from "@/mammon";
import {activityApi, processingApi} from "@/mammon";
const {refresh} = useLedgersStore();
const editLedgerModal = ref<typeof EditLedgerModal>();
const processActivities = async () => {
await activityApi.fetchAllNewActivities();
await processingApi.processNewActivities();
await refresh();
}
+1 -1
View File
@@ -4,9 +4,9 @@ import {RouterLink} from 'vue-router';
import {routeNames} from '@/routes';
const links = [
{name: "Market", path: "/market"},
{name: "Ledger", path: "/ledgers"},
{name: "Rules", path: "/rules"},
{name: "Market", path: "/market"},
{name: "Reprocess", path: "/reprocess"},
{name: "Tools", path: "/tools"}
];