Skip to content

Commit d826a85

Browse files
authored
Fix eslint/prettier errors (#1356)
Errors introduced in ea8def5.
2 parents ea8def5 + 454d098 commit d826a85

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

debug_toolbar/static/debug_toolbar/js/toolbar.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ const djdt = {
100100
),
101101
store_id = djDebug.dataset.storeId;
102102
if (store_id && inner.children.length === 0) {
103-
let url = new URL(djDebug.dataset.renderPanelUrl, window.location);
103+
const url = new URL(
104+
djDebug.dataset.renderPanelUrl,
105+
window.location
106+
);
104107
url.searchParams.append("store_id", store_id);
105108
url.searchParams.append("panel_id", this.className);
106109
ajax(url).then(function (data) {

0 commit comments

Comments
 (0)