Skip to content

Commit a6014fb

Browse files
committed
fix: transfer ownership confirmation string formatting
Signed-off-by: ailkiv <a.ilkiv.ye@gmail.com>
1 parent 2451223 commit a6014fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/SidebarTabs/TransferOwnership.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export default {
147147
},
148148
149149
confirmationString() {
150-
return `${this.form.ownerId}/${this.form.title}`
150+
return `${this.form.ownerId}/${this.form.title.replace(/\s/g, ' ').trim()}`
151151
},
152152
153153
options() {

0 commit comments

Comments
 (0)