Commit 6f6eed62f258e6ed9915e83e6a79afbe0626587f
1 parent
e6562b97
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
Fix block store filter
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/box_organizer/index.html.erb
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | <input type="text" id="block-store-filter" placeholder="<%= _('Filter blocks') %>" title="<%= _('Filter blocks') %>"> |
12 | 12 | <div id="block-types"> |
13 | 13 | <% @available_blocks.each do |block| %> |
14 | - <div id="block-<%= block.name.to_css_class %>" class="block-type <%= block.name.to_css_class %>" data-block-type="<%= block.name %>" data-block-name="<%= block.pretty_name %>"> | |
14 | + <div id="block-<%= block.name.to_css_class %>" class="block-type <%= block.name.to_css_class %>" data-block-type="<%= block.name %>" data-block-name="<%= _(block.pretty_name) %>"> | |
15 | 15 | <div class="button-bar"> |
16 | 16 | <%= modal_button 'help', _('Help on this block'), |
17 | 17 | {:action => 'show_block_type_info', :type => block.name}, | ... | ... |