7658-devToTest_2428 #508

Merged
alexm merged 392 commits from 7658-devToTest_2428 into test 2024-07-02 10:38:20 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0776db2e0f - Show all commits

View File

@ -13,7 +13,7 @@ import useNotify from 'src/composables/useNotify.js';
import { toDate } from 'src/filters';
import { downloadFile } from 'src/composables/downloadFile';
const {{id}} = useRoute();
const route = useRoute();
const quasar = useQuasar();
const router = useRouter();
const { t } = useI18n();
@ -29,7 +29,7 @@ const thermographFilter = {
fields: ['id', 'name'],
},
},
where: { travelFk: id },
where: { travelFk: route.params.id },
order: ['created'],
};