diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-07 18:35:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-07 18:35:51 +0000 |
commit | eece12ddfde08646a76ac92d961c4d223349cd39 (patch) | |
tree | 0c4e2327d035c2378eb5c0c9075093cc34c63346 /app/views/context_menus | |
parent | 457c27e697cc368a484f68e3435d89b78eeea9cd (diff) | |
download | redmine-eece12ddfde08646a76ac92d961c4d223349cd39.tar.gz redmine-eece12ddfde08646a76ac92d961c4d223349cd39.zip |
Fixed: Can't clear custom field value through context menu in the issue list (#13075).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11331 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/context_menus')
-rw-r--r-- | app/views/context_menus/issues.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/context_menus/issues.html.erb b/app/views/context_menus/issues.html.erb index 6b3fe4b9e..2163d95c1 100644 --- a/app/views/context_menus/issues.html.erb +++ b/app/views/context_menus/issues.html.erb @@ -111,7 +111,7 @@ <li><%= bulk_update_custom_field_context_menu_link(field, text, value || text) %></li> <% end %> <% unless field.is_required? %> - <li><%= bulk_update_custom_field_context_menu_link(field, l(:label_none), '') %></li> + <li><%= bulk_update_custom_field_context_menu_link(field, l(:label_none), '__none__') %></li> <% end %> </ul> </li> |