Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -633,7 +633,7 @@
item.sub_groups = [];
}
let allChecked = true;
item.actions = item.actions.filter(v => !v.hidden);
// item.actions = item.actions.filter(v => !v.hidden);
item.actions.forEach(act => {
act.$id = `${payload}&${act.id}`;
act.related_resource_types.forEach(v => {
@@ -649,7 +649,7 @@
this.linearAction.push(act);
});
item.sub_groups.forEach(act => {
act.actions = act.actions.filter(v => !v.hidden);
// act.actions = act.actions.filter(v => !v.hidden);
(act.actions || []).forEach(v => {
v.$id = `${payload}&${v.id}`;
v.related_resource_types.forEach(subItem => {

0 comments on commit a587a60

Please sign in to comment.