PR-CUSTOMER #186

Merged
jsegarra merged 105 commits from :PR-CUSTOMER into dev 2024-04-19 15:55:53 +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>