@@ -25,7 +25,7 @@ function refreshHistory() {
2525 const formTarget = djDebug . querySelector ( ".refreshHistory" ) ;
2626 const container = document . getElementById ( "djdtHistoryRequests" ) ;
2727 const oldIds = new Set (
28- pluckData ( container . querySelectorAll ( "tr[data-store-id]" ) , "storeId" ) ,
28+ pluckData ( container . querySelectorAll ( "tr[data-store-id]" ) , "storeId" )
2929 ) ;
3030
3131 ajaxForm ( formTarget )
@@ -44,8 +44,8 @@ function refreshHistory() {
4444 const allIds = new Set (
4545 pluckData (
4646 container . querySelectorAll ( "tr[data-store-id]" ) ,
47- "storeId" ,
48- ) ,
47+ "storeId"
48+ )
4949 ) ;
5050 const newIds = difference ( allIds , oldIds ) ;
5151 const lastRequestId = newIds . values ( ) . next ( ) . value ;
@@ -58,7 +58,7 @@ function refreshHistory() {
5858 . then ( function ( refreshInfo ) {
5959 refreshInfo . newIds . forEach ( function ( newId ) {
6060 const row = container . querySelector (
61- `tr[data-store-id="${ newId } "]` ,
61+ `tr[data-store-id="${ newId } "]`
6262 ) ;
6363 row . classList . add ( "flash-new" ) ;
6464 } ) ;
@@ -74,7 +74,7 @@ function refreshHistory() {
7474
7575function switchHistory ( newStoreId ) {
7676 const formTarget = djDebug . querySelector (
77- ".switchHistory[data-store-id='" + newStoreId + "']" ,
77+ ".switchHistory[data-store-id='" + newStoreId + "']"
7878 ) ;
7979 const tbody = formTarget . closest ( "tbody" ) ;
8080
@@ -88,7 +88,7 @@ function switchHistory(newStoreId) {
8888 if ( Object . keys ( data ) . length === 0 ) {
8989 const container = document . getElementById ( "djdtHistoryRequests" ) ;
9090 container . querySelector (
91- 'button[data-store-id="' + newStoreId + '"]' ,
91+ 'button[data-store-id="' + newStoreId + '"]'
9292 ) . innerHTML = "Switch [EXPIRED]" ;
9393 }
9494 replaceToolbarState ( newStoreId , data ) ;
0 commit comments