mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 07:52:43 +00:00
Issue #1066 : The "Update group" button indicates that a background update is in progress
This commit is contained in:
parent
f67bd900f7
commit
15850cc72c
1 changed files with 12 additions and 4 deletions
|
@ -165,9 +165,12 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="flex flex-wrap gap-2 my-2">
|
<div class="flex flex-wrap gap-2 my-2">
|
||||||
<o-button native-type="submit" variant="primary">{{
|
<o-button
|
||||||
t("Update group")
|
:loading="loadingUpdateGroup"
|
||||||
}}</o-button>
|
native-type="submit"
|
||||||
|
variant="primary"
|
||||||
|
>{{ t("Update group") }}</o-button
|
||||||
|
>
|
||||||
<o-button @click="confirmDeleteGroup" variant="danger">{{
|
<o-button @click="confirmDeleteGroup" variant="danger">{{
|
||||||
t("Delete group")
|
t("Delete group")
|
||||||
}}</o-button>
|
}}</o-button>
|
||||||
|
@ -243,7 +246,12 @@ const showCopiedTooltip = ref(false);
|
||||||
|
|
||||||
const editableGroup = ref<IGroup>();
|
const editableGroup = ref<IGroup>();
|
||||||
|
|
||||||
const { onDone, onError, mutate: updateGroup } = useUpdateGroup();
|
const {
|
||||||
|
onDone,
|
||||||
|
onError,
|
||||||
|
mutate: updateGroup,
|
||||||
|
loading: loadingUpdateGroup,
|
||||||
|
} = useUpdateGroup();
|
||||||
|
|
||||||
onDone(() => {
|
onDone(() => {
|
||||||
notifier?.success(t("Group settings saved"));
|
notifier?.success(t("Group settings saved"));
|
||||||
|
|
Loading…
Reference in a new issue