8627-devToTest #1421

Merged
alexm merged 768 commits from 8627-devToTest into test 2025-02-18 12:37:37 +00:00
2 changed files with 0 additions and 3 deletions
Showing only changes of commit 52e1cfc828 - Show all commits

View File

@ -47,7 +47,6 @@ onBeforeRouteUpdate(async (to, from) => {
if (to.params.id !== from.params.id) {
if (props.idInWhere) arrayData.store.filter.where = { id: to.params.id };
else arrayData.store.url = `${props.url}/${to.params.id}`;
console.log('fetching data', arrayData.store.url, to.params.id);
await arrayData.fetch({ updateRouter: false });
}
});

View File

@ -20,9 +20,7 @@ const maritalStatus = [
const advancedSummary = ref({});
const route = useRoute();
onBeforeMount(async () => {
console.log('route.params.id', route.params.id);
advancedSummary.value = (await useAdvancedSummary('Workers', route.params.id)) ?? {};
console.log('advancedSummary.value: ', advancedSummary.value);
});
</script>
<template>