Skip to content

Commit

Permalink
Issue #103 Fix escaped text in dropdown (#107)
Browse files Browse the repository at this point in the history
* Issue #103 Fix escaped text in dropdown
  • Loading branch information
TomoTsuyuki committed Jan 10, 2024
1 parent 003273a commit c2192e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/duplicateto_select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
{{#str}} action_duplicatetosection, block_massaction {{/str}}
</option>
{{#sections}}
<option value="{{number}}">{{title}}</option>
<option value="{{number}}">{{{title}}}</option>
{{/sections}}
</select>
2 changes: 1 addition & 1 deletion templates/moveto_select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
{{#str}} action_movetosection, block_massaction {{/str}}
</option>
{{#sections}}
<option value="{{number}}">{{title}}</option>
<option value="{{number}}">{{{title}}}</option>
{{/sections}}
</select>
2 changes: 1 addition & 1 deletion templates/section_select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</option>
{{#sections}}
<option id="block-massaction-control-section-list-select-option-{{number}}" value="{{number}}">
{{title}}
{{{title}}}
</option>
{{/sections}}
</select>

0 comments on commit c2192e7

Please sign in to comment.