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 f67fe34 commit fdc7d72Copy full SHA for fdc7d72
src/network/network_details_templates.js
@@ -59,7 +59,7 @@ templates._details_content = function(entry, do_raw)
59
// Bind a template function for raw / not-raw, on demand.
60
var template_func_name = "_requests_responses_" + do_raw ? "raw" : "not_raw" + "_bound";
61
if (!this[template_func_name])
62
- this[template_func_name] = this.requests_responses.bind(null, do_raw);
+ this[template_func_name] = this.requests_responses.bind(this, do_raw);
63
64
var requests_responses = entry.requests_responses.map(this[template_func_name]);
65
0 commit comments