Merge branch 'anandadev' into develop

This commit is contained in:
AnandaTon 2023-06-21 17:11:08 +07:00
commit fb1ab7669a
8 changed files with 179 additions and 56 deletions

View file

@ -546,7 +546,7 @@ const save = async (publish: boolean) => {
.catch((e) => {
messageError($q, e);
})
.finally(() => {
.finally(async () => {
hideLoader();
await fetchData(true);
});

View file

@ -543,7 +543,7 @@ const save = async (publish: boolean) => {
.catch((e) => {
messageError($q, e);
})
.finally(() => {
.finally(async () => {
hideLoader();
await fetchData(true);
});

View file

@ -585,7 +585,7 @@ const save = async (publish: boolean) => {
.catch((e) => {
messageError($q, e);
})
.finally(() => {
.finally(async () => {
hideLoader();
await fetchData(true);
});