Skip to content

Commit eb41b43

Browse files
AIlkivChartman123
authored andcommitted
fix: transfer ownership confirmation string formatting
Signed-off-by: ailkiv <[email protected]>
1 parent f5396d4 commit eb41b43

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
@@ -144,7 +144,7 @@ export default {
144144
)
145145
},
146146
confirmationString() {
147-
return `${this.form.ownerId}/${this.form.title}`
147+
return `${this.form.ownerId}/${this.form.title.replace(/\s/g, ' ').trim()}`
148148
},
149149
options() {
150150
if (this.isValidQuery) {

0 commit comments

Comments
 (0)