Skip to content

Commit

Permalink
Merge pull request #1192 from Aca-jov/multieditAll
Browse files Browse the repository at this point in the history
Fix (all types of items can be multiedited)
  • Loading branch information
sivakuna-aap committed Sep 24, 2015
2 parents 518e07f + a883cb4 commit fe39635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/scripts/superdesk-authoring/authoring.js
Expand Up @@ -519,7 +519,7 @@
action.package_item = current_item.state !== 'spiked' && current_item.state !== 'scheduled' &&
!current_item.embargo && current_item.package_type !== 'takes' && current_item.state !== 'killed';

action.multi_edit = _.contains(['text', 'preformatted'], item.type) && !is_read_only_state;
action.multi_edit = !is_read_only_state;

//check for desk membership for edit rights.
if (current_item.task && current_item.task.desk) {
Expand Down

0 comments on commit fe39635

Please sign in to comment.