Skip to content

Commit f11dc8f

Browse files
author
Daniel Herzog
committed
DFL-3617: Clicking the tiny triangle preceeding the Request and Response headlines in the Network detail overlay only apply to the Request
1 parent c465986 commit f11dc8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/network/network_view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -841,9 +841,9 @@ cls.NetworkDetailOverlayViewPrototype = function()
841841
return templates.network.details(entry);
842842
};
843843

844-
this._on_toggle_expand_request_response = function(event)
844+
this._on_toggle_expand_request_response = function(event, target)
845845
{
846-
var key = event.target.dataset.isResponse ? "expand-responses" : "expand-requests";
846+
var key = target.dataset.isResponse ? "expand-responses" : "expand-requests";
847847
var set_active = !settings["network-detail-overlay"].get(key);
848848
settings["network-detail-overlay"].set(key, set_active);
849849
this.needs_instant_update = true;

0 commit comments

Comments
 (0)