Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/GuestNameDialog.vue')
-rw-r--r--src/components/GuestNameDialog.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/GuestNameDialog.vue b/src/components/GuestNameDialog.vue
index 2f205eae0..130aa4d17 100644
--- a/src/components/GuestNameDialog.vue
+++ b/src/components/GuestNameDialog.vue
@@ -24,7 +24,10 @@
<form v-tooltip="t('text', 'Enter your name so other users can see who is editing')" class="guest-name-dialog" @submit.prevent="setGuestName()">
<label><Avatar :url="avatarUrl" :disable-tooltip="true" :size="32" /></label>
<input v-model="guestName" type="text" :aria-label="t('text', 'Edit guest name')">
- <input type="submit" class="icon-confirm" :aria-label="t('text', 'Save guest name')">
+ <input type="submit"
+ class="icon-confirm"
+ :aria-label="t('text', 'Save guest name')"
+ value="">
</form>
</template>