7631_testToMaster_2426 #480

Merged
alexm merged 390 commits from 7631_testToMaster_2426 into master 2024-06-25 06:40:05 +00:00
2 changed files with 6 additions and 5 deletions
Showing only changes of commit 313395ef7c - Show all commits

View File

@ -116,9 +116,10 @@ onMounted(async () => {
// Podemos enviarle al form la estructura de data inicial sin necesidad de fetchearla
state.set($props.model, $props.formInitialData);
if ($props.autoLoad && !$props.formInitialData && $props.url) await fetch();
else if (arrayData.store.data && !$props.formInitialData)
updateAndEmit(arrayData.store.data, 'onFetch');
if (!$props.formInitialData) {
if ($props.autoLoad && $props.url) await fetch();
else if (arrayData.store.data) updateAndEmit(arrayData.store.data, 'onFetch');
}
if ($props.observeFormChanges) {
watch(
() => formData.value,

View File

@ -34,9 +34,9 @@ const cloneTravel = () => {
const cloneTravelWithEntries = async () => {
try {
const { id } = await axios.post(`Travels/${$props.travel.id}/cloneWithEntries`);
const { data } = await axios.post(`Travels/${$props.travel.id}/cloneWithEntries`);
notify('globals.dataSaved', 'positive');
router.push({ name: 'TravelBasicData', params: { id } });
router.push({ name: 'TravelBasicData', params: { data } });
} catch (err) {
console.err('Error cloning travel with entries');
}