summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-06-04 11:50:11 +0200
committerGitHub <noreply@github.com>2021-06-04 11:50:11 +0200
commitec2f8e708d82a60035f671da37d841837f4f2c7b (patch)
treea65ba35e3a999c29389df9f478647784f30deb88
parentc6cff5d56e04fb06aae323f03bd38e196b9be7f6 (diff)
parent37064a36548f07d5ed23c304b19dea54ebe2da70 (diff)
Merge pull request #2251 from nextcloud/fix/circle-create
Disable new circle buttons on loading
-rw-r--r--src/components/EntityPicker/NewCircleIntro.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/EntityPicker/NewCircleIntro.vue b/src/components/EntityPicker/NewCircleIntro.vue
index c9517788..e6156cfb 100644
--- a/src/components/EntityPicker/NewCircleIntro.vue
+++ b/src/components/EntityPicker/NewCircleIntro.vue
@@ -67,12 +67,13 @@
<div class="entity-picker__navigation">
<button
+ :disabled="loading"
class="navigation__button-left"
@click="onCancel">
{{ t('contacts', 'Cancel') }}
</button>
<button
- :disabled="isEmptyName"
+ :disabled="isEmptyName || loading"
class="navigation__button-right primary"
@click="onSubmit">
{{ t('contacts', 'Create circle') }}