0
0
Fork 0

fix log view not refreshing when changing id param

This commit is contained in:
William Buezas 2024-06-25 15:27:48 -03:00
parent 0715e86530
commit 6e6c6301d2
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,10 @@
<script setup> <script setup>
import VnLog from 'src/components/common/VnLog.vue'; import VnLog from 'src/components/common/VnLog.vue';
import { useRoute } from 'vue-router';
const route = useRoute();
</script> </script>
<template> <template>
<VnLog model="Ticket" url="/TicketLogs"></VnLog> <VnLog model="Ticket" url="/TicketLogs" :key="route.params.id"></VnLog>
</template> </template>

View File

@ -724,8 +724,9 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</QTd> </QTd>
</template> </template>
<template #body-cell-history="{ row }"> <template #body-cell-history="{ row }">
<QTd v-if="row.hasLogs"> <QTd>
<QBtn <QBtn
v-if="row.$hasLogs"
@click.stop="goToLog(row.id)" @click.stop="goToLog(row.id)"
color="primary" color="primary"
icon="history" icon="history"