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 1 additions and 1 deletions
Showing only changes of commit 9ebb7b85b2 - Show all commits

View File

@ -31,6 +31,7 @@ const searchRightDataKey = computed(() => {
const arrayData = useArrayData(props.dataKey, {
url: props.url,
filter: props.filter,
oneRecord: true,
});
onBeforeMount(async () => {

View File

@ -35,7 +35,6 @@ onBeforeMount(async () => {
if (props.idInWhere) arrayData.store.filter.where = { id: route.params.id };
else if (!regex.test(props.url))
arrayData.store.url = `${props.url}/${route.params.id}`;
console.log('fetching data', arrayData.store.url, route.params.id);
await arrayData.fetch({ append: false, updateRouter: false });
} catch {
const { matched: matches } = router.currentRoute.value;