Skip to content

Commit

Permalink
Issue #103 Fix escaped text in dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
TomoTsuyuki committed Jan 8, 2024
1 parent 5e13587 commit a34c541
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/duplicateto_select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"sections": {
"number": "0",
"title": "Test"
}
}
}
}}
<select id="block-massaction-control-section-list-duplicateto"
Expand All @@ -35,6 +35,6 @@
{{#str}} action_duplicatetosection, block_massaction {{/str}}
</option>
{{#sections}}
<option value="{{number}}">{{title}}</option>
<option value="{{number}}">{{{title}}}</option>
{{/sections}}
</select>
4 changes: 2 additions & 2 deletions templates/moveto_select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"sections": {
"number": "0",
"title": "Test"
}
}
}
}}
<select id="block-massaction-control-section-list-moveto"
Expand All @@ -35,6 +35,6 @@
{{#str}} action_movetosection, block_massaction {{/str}}
</option>
{{#sections}}
<option value="{{number}}">{{title}}</option>
<option value="{{number}}">{{{title}}}</option>
{{/sections}}
</select>

0 comments on commit a34c541

Please sign in to comment.