0
0
Fork 0

refs #6584 hotfix await

This commit is contained in:
Carlos Satorres 2023-12-20 09:11:16 +01:00
parent f7ebb86960
commit f78d5b41a4
1 changed files with 5 additions and 0 deletions

View File

@ -142,12 +142,17 @@ async function regularizeClaim() {
}) })
.onOk(async () => await onUpdateGreugeAccept()); .onOk(async () => await onUpdateGreugeAccept());
} else { } else {
await claimRef.value.fetch();
quasar.notify({ quasar.notify({
message: t('globals.dataSaved'), message: t('globals.dataSaved'),
type: 'positive', type: 'positive',
}); });
} }
await arrayData.fetch({ append: false }); await arrayData.fetch({ append: false });
quasar.notify({
message: t('globals.dataSaved'),
type: 'positive',
});
} }
async function updateGreuge(greuges) { async function updateGreuge(greuges) {