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 4 additions and 1 deletions
Showing only changes of commit 5ae54d557b - Show all commits

View File

@ -106,7 +106,10 @@ onMounted(async () => {
});
onBeforeRouteLeave((to, from, next) => {
if (!hasChanges.value) next();
if (!hasChanges.value) {
next();
return;
}
quasar.dialog({
component: VnConfirm,