Skip to content
Snippets Groups Projects
Commit c909a392 authored by Winnie Hellmann's avatar Winnie Hellmann
Browse files

Remove duplicate escaping from branch dropdown

parent d51d8933
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -54,7 +54,7 @@ export default function initCompareAutocomplete(limitTo = null, clickHandler = (
.attr('href', '#')
.addClass(ref === selected ? 'is-active' : '')
.text(ref)
.attr('data-ref', escape(ref));
.attr('data-ref', ref);
return $('<li />').append(link);
}
},
Loading
Loading
---
title: Fix encoding of branch names on compare and new merge request page
merge_request: 19143
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment