Skip to content

Commit c641767

Browse files
author
p01
committed
Bring back the resource's pivot_id which is necessary for the keyboard navigation when closing a group of resources.
1 parent a23eda0 commit c641767

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/resource-manager/resource_service.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ cls.ResourceInspector = function(network_logger)
163163
r.same_origin = cls.ResourceUtil.sameOrigin(d.url, r);
164164

165165
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;
166+
r.pivot_id = d.pivot_id + "_" + r.group;
167+
r.is_hidden = ctx.collapsed[r.pivot_id] == true;
167168

168169
return true;
169170
}, this);

0 commit comments

Comments
 (0)