Remove encode from the project-refs-dropdown renderRow method
This commit is contained in:
parent
a98ad03ba1
commit
eed4b2c5c4
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@
|
|||
if (ref.header != null) {
|
||||
return $('<li />').addClass('dropdown-header').text(ref.header);
|
||||
} else {
|
||||
link = $('<a />').attr('href', '#').addClass(ref === selected ? 'is-active' : '').text(ref).attr('data-ref', escape(ref));
|
||||
link = $('<a />').attr('href', '#').addClass(ref === selected ? 'is-active' : '').text(ref).attr('data-ref', ref);
|
||||
return $('<li />').append(link);
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue