Skip to content

Commit 0ec8fd5

Browse files
committed
fix
1 parent 0f0b9ec commit 0ec8fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/components/RepoBranchTagSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ const sfc = {
282282
} else {
283283
selected = result === (this.release ? this.release.tagName : this.defaultBranch);
284284
}
285-
this.items.push({name: result, url: result, branch: this.mode === 'branches', tag: this.mode === 'tags', selected});
285+
this.items.push({name: result, url: pathEscapeSegments(result), branch: this.mode === 'branches', tag: this.mode === 'tags', selected});
286286
}
287287
this.hasListInitialized[this.mode] = true;
288288
} catch (e) {

0 commit comments

Comments
 (0)