We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23eda0 commit c641767Copy full SHA for c641767
src/resource-manager/resource_service.js
@@ -163,7 +163,8 @@ cls.ResourceInspector = function(network_logger)
163
r.same_origin = cls.ResourceUtil.sameOrigin(d.url, r);
164
165
r.full_id = d.pivot_id + "_" + ctx.group_order.indexOf(r.group) + r.group + "_" + r.uid;
166
- r.is_hidden = ctx.collapsed[d.pivot_id + "_" + r.group] == true;
+ r.pivot_id = d.pivot_id + "_" + r.group;
167
+ r.is_hidden = ctx.collapsed[r.pivot_id] == true;
168
169
return true;
170
}, this);
0 commit comments