summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2023-10-18 10:28:34 +0200
committerGitHub <noreply@github.com>2023-10-18 10:28:34 +0200
commit9dc3e5d6bfc62ab397025429b231698ad4e79261 (patch)
tree40c27f2a9ef013454e432fc7ff6dfd44c12bd144
parent1bbbc980f0a12670eb98ccc17ab7e5f22f901643 (diff)
parentfbcb84ed272c7c5a3eba8a01231f2063f2f4f351 (diff)
Merge pull request #3666 from nextcloud/backport/3635/stable5.4
-rw-r--r--src/components/ContactDetails.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ContactDetails.vue b/src/components/ContactDetails.vue
index 35e17ed8..1c39e260 100644
--- a/src/components/ContactDetails.vue
+++ b/src/components/ContactDetails.vue
@@ -752,10 +752,10 @@ export default {
},
/**
- * Select the text in the input if it is still set to 'new Contact'
+ * Select the text in the input if it is still set to 'Name'
*/
selectInput() {
- if (this.$refs.fullname && this.$refs.fullname.value === t('contacts', 'New contact')) {
+ if (this.$refs.fullname && this.$refs.fullname.value === t('contacts', 'Name')) {
this.$refs.fullname.select()
}
},