7299_testToMaster #351

Merged
alexm merged 321 commits from 7299_testToMaster into master 2024-05-07 05:36:02 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 26a1b29070 - Show all commits

View File

@ -100,7 +100,7 @@ const openRemoveDialog = async (id) => {
});
};
const redirectToThermographForm = (action, { id = null }) => {
const redirectToThermographForm = (action, id = null) => {
const routeDetails = {
name: action === 'create' ? 'TravelThermographsCreate' : 'TravelThermographsEdit',
};
@ -162,7 +162,7 @@ const removeThermograph = async (id) => {
color="primary"
size="sm"
class="cursor-pointer"
@click="redirectToThermographForm('edit', row)"
@click="redirectToThermographForm('edit', row.id)"
>
<QTooltip>{{ t('Edit file') }}</QTooltip>
</QIcon>