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.
2 parents ea8def5 + 454d098 commit d826a85Copy full SHA for d826a85
debug_toolbar/static/debug_toolbar/js/toolbar.js
@@ -100,7 +100,10 @@ const djdt = {
100
),
101
store_id = djDebug.dataset.storeId;
102
if (store_id && inner.children.length === 0) {
103
- let url = new URL(djDebug.dataset.renderPanelUrl, window.location);
+ const url = new URL(
104
+ djDebug.dataset.renderPanelUrl,
105
+ window.location
106
+ );
107
url.searchParams.append("store_id", store_id);
108
url.searchParams.append("panel_id", this.className);
109
ajax(url).then(function (data) {
0 commit comments