summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/components/Settings/SettingsAddressbook.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Settings/SettingsAddressbook.vue b/src/components/Settings/SettingsAddressbook.vue
index ad51c967..7ea727df 100644
--- a/src/components/Settings/SettingsAddressbook.vue
+++ b/src/components/Settings/SettingsAddressbook.vue
@@ -238,9 +238,11 @@ export default {
this.copied = true
OC.Notification.showTemporary(t('contacts', 'Addressbook was not copied to clipboard.'))
}).then(() => {
- // stop loading status regardless of outcome
this.copyLoading = false
- this.copied = false
+ setTimeout(() => {
+ // stop loading status regardless of outcome
+ this.copied = false
+ }, 2000)
})
}
}