Merge literally everything into main so I stop just working on one branch #14

Merged
Ajdj100 merged 64 commits from recruiter into main 2025-10-28 13:40:41 -05:00
Showing only changes of commit a67a66db1b - Show all commits

View File

@@ -21,16 +21,16 @@ onMounted(async () => {
try {
//get app ID from URL param
const router = useRoute();
const appIDRaw = router.params.id.toString();
const raw = await loadApplication(appIDRaw);
console.log(raw);
if (raw === null) {
const appIDRaw = router.params.id;
if (appIDRaw === undefined) {
//new app
appData.value = null
readOnly.value = false;
newApp.value = true;
} else {
//load app
const raw = await loadApplication(appIDRaw.toString());
const data = raw.application;
appID.value = data.id;