We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68b1ea0 + ba4670c commit 931ff7bCopy full SHA for 931ff7b
src/components/SidebarTabs/TransferOwnership.vue
@@ -147,7 +147,7 @@ export default {
147
},
148
149
confirmationString() {
150
- return `${this.form.ownerId}/${this.form.title}`
+ return `${this.form.ownerId}/${this.form.title.replace(/\s/g, ' ').trim()}`
151
152
153
options() {
src/views/Create.vue
@@ -81,6 +81,7 @@
81
:placeholder="t('forms', 'Form title')"
82
required
83
autofocus
84
+ @keydown.enter.prevent
85
@input="onTitleChange" />
86
</h2>
87
<label class="hidden-visually" for="form-desc">
0 commit comments