fix: refs #8381 update travel data fetching to use correct URL and include necessary fields
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javi Gallego 2025-01-17 15:49:14 +01:00
parent 7e1482dd3a
commit 9a29e7e2fd
1 changed files with 3 additions and 2 deletions

View File

@ -20,9 +20,10 @@ const router = useRouter();
const { t } = useI18n();
const { notify } = useNotify();
const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', {
url: 'Travel',
url: 'Travels',
limit: 1,
filter: {
fields: ['id', 'agencyModeFk'],
where: { id: route.params.id },
},
// Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch'
@ -152,7 +153,7 @@ const removeThermograph = async (id) => {
notify(t('Thermograph removed'), 'positive');
};
onMounted(() => {
fetchTravel();
fetchTravel({});
});
</script>