test: refs #8717 add integration test for agencyModes #1545

Merged
jtubau merged 27 commits from 8717-reviewAndFixAgencySection into dev 2025-04-01 05:19:07 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit feabf9c7be - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { onBeforeMount, computed } from 'vue';
import { onBeforeMount, computed, markRaw } from 'vue';
import { useRoute, useRouter, onBeforeRouteUpdate, onBeforeRouteLeave } from 'vue-router';
import { useArrayData } from 'src/composables/useArrayData';
import { useStateStore } from 'stores/useStateStore';
@ -37,7 +37,7 @@ onBeforeRouteLeave(() => {
});
onBeforeMount(async () => {
stateStore.cardDescriptorChangeValue(props.descriptor);
stateStore.cardDescriptorChangeValue(markRaw(props.descriptor));
const route = router.currentRoute.value;
try {