File tree 2 files changed +2
-2
lines changed
debug_toolbar/static/debug_toolbar/js
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ const djdt = {
298
298
299
299
function handleAjaxResponse ( requestId ) {
300
300
const encodedRequestId = encodeURIComponent ( requestId ) ;
301
- const dest = `${ sidebarUrl } ?store_id =${ encodedRequestId } ` ;
301
+ const dest = `${ sidebarUrl } ?request_id =${ encodedRequestId } ` ;
302
302
slowjax ( dest ) . then ( ( data ) => {
303
303
if ( djdt . needUpdateOnFetch ) {
304
304
replaceToolbarState ( encodedRequestId , data ) ;
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ function ajaxForm(element) {
112
112
function replaceToolbarState ( newRequestId , data ) {
113
113
const djDebug = document . getElementById ( "djDebug" ) ;
114
114
djDebug . setAttribute ( "data-request-id" , newRequestId ) ;
115
- // Check if response is empty, it could be due to an expired storeId .
115
+ // Check if response is empty, it could be due to an expired requestId .
116
116
for ( const panelId of Object . keys ( data ) ) {
117
117
const panel = document . getElementById ( panelId ) ;
118
118
if ( panel ) {
You can’t perform that action at this time.
0 commit comments