Commit e3231fa49739d386b410b83a485e864d752e41a9
1 parent
fde8e501
Exists in
master
and in
7 other branches
Change label select from 'All' to 'Select a category'
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
controllers/myprofile/proposals_discussion_plugin_tasks_controller.rb
... | ... | @@ -16,7 +16,7 @@ class ProposalsDiscussionPluginTasksController < TasksController |
16 | 16 | |
17 | 17 | @view_only = !current_person.has_permission?(:perform_task, profile) || params[:view_only] |
18 | 18 | |
19 | - @task_categories = [OpenStruct.new(:name => _('All'), :id => nil) ] + ProposalsDiscussionPlugin::TaskCategory.all | |
19 | + @task_categories = [OpenStruct.new(:name => _('Select a category'), :id => nil) ] + ProposalsDiscussionPlugin::TaskCategory.all | |
20 | 20 | @task_types = Task.pending_types_for(profile) |
21 | 21 | |
22 | 22 | # maps statuses which would be used in status filter | ... | ... |