Actions
Defect #13075
closedCan't clear custom field value through context menu in the issue list
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
When selecting issue (or multiple issues) in the issue list, right clicking and selecting CUSTOM_FIELD_NAME from the context menu, click "none" then issue does not change.
I suppose problem is using an empty string instead of "__none__" when calling bulk_update_custom_field_context_menu_link method.
<% unless field.is_required? %>
<li><%= bulk_update_custom_field_context_menu_link(field, l(:label_none), '') %></li>
<% end %>
Actions