Fix computed ref passed without .value to setCurrentGraphId
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -216,7 +216,7 @@ const numberBeforeMapInRoute = computed(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
setCurrentGraphId(numberBeforeMapInRoute);
|
setCurrentGraphId(numberBeforeMapInRoute.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Data
|
// Data
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ const numberBeforeMapInRoute = computed(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
setCurrentGraphId(numberBeforeMapInRoute);
|
setCurrentGraphId(numberBeforeMapInRoute.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Data
|
// Data
|
||||||
|
|||||||
Reference in New Issue
Block a user