8381-thermographTravel #1244

Open
jgallego wants to merge 5 commits from 8381-thermographTravel into dev
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 9a29e7e2fd - Show all commits

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>