summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-04 11:43:27 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-04 11:43:27 +0200
commit37064a36548f07d5ed23c304b19dea54ebe2da70 (patch)
treea65ba35e3a999c29389df9f478647784f30deb88
parentc6cff5d56e04fb06aae323f03bd38e196b9be7f6 (diff)
Disable new circle buttons on loading
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-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') }}