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 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,