Browse Source

Escape branch name in dropdown menu (#3691)

Signed-off-by: Jonas Franz <info@jonasfranz.software>
for-closed-social
Jonas Franz 6 years ago
committed by Lunny Xiao
parent
commit
59e70c5ee9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      templates/repo/branch_dropdown.tmpl

+ 2
- 2
templates/repo/branch_dropdown.tmpl View File

@ -47,9 +47,9 @@
</div>
<div class="text small">
{{if .IsViewBranch}}
{{.i18n.Tr "repo.branch.create_from" .BranchName | Safe}}
{{.i18n.Tr "repo.branch.create_from" .BranchName}}
{{else}}
{{.i18n.Tr "repo.branch.create_from" (ShortSha .BranchName) | Safe}}
{{.i18n.Tr "repo.branch.create_from" (ShortSha .BranchName)}}
{{end}}
</div>
</a>

Loading…
Cancel
Save