fix: simplify data fetching logic in VnCard.vue #1656

Merged
alexm merged 7 commits from fix_vnCard_url into test 2025-04-01 11:27:39 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 95950b7485 - Show all commits

View File

@ -26,7 +26,7 @@ const route = useRoute();
const stateStore = useStateStore();
const router = useRouter();
const entityId = computed(() => props.id || route?.params?.id);
let arrayData = getArrayData();
let arrayData = getArrayData(props.url);
onBeforeRouteLeave(() => {
stateStore.cardDescriptorChangeValue(null);
@ -75,9 +75,9 @@ function formatUrl(id) {
return props.url.replace(regex, `/${newId}`);
}
function getArrayData() {
function getArrayData(url = formatUrl()) {
return useArrayData(props.dataKey, {
url: formatUrl(),
url,
userFilter: props.filter,
oneRecord: true,
});