forked from verdnatura/salix-front
refs #6584 hotfix await
This commit is contained in:
parent
f7ebb86960
commit
f78d5b41a4
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue