Skip to content

Commit 0c07311

Browse files
Coding Standards: Fix JSHint issues in [47246].
See #44264. git-svn-id: https://develop.svn.wordpress.org/trunk@47248 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 7a7c3c6 commit 0c07311

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/js/_enqueues/admin/privacy-tools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jQuery( document ).ready( function( $ ) {
5959
var $this = $( this ),
6060
$action = $this.parents( '.export-personal-data' ),
6161
$requestRow = $this.parents( 'tr' ),
62-
$progress = $requestRow.find( '.export-progress' );
62+
$progress = $requestRow.find( '.export-progress' ),
6363
requestID = $action.data( 'request-id' ),
6464
nonce = $action.data( 'nonce' ),
6565
exportersCount = $action.data( 'exporters-count' ),
@@ -150,7 +150,7 @@ jQuery( document ).ready( function( $ ) {
150150
var $this = $( this ),
151151
$action = $this.parents( '.remove-personal-data' ),
152152
$requestRow = $this.parents( 'tr' ),
153-
$progress = $requestRow.find( '.erasure-progress' );
153+
$progress = $requestRow.find( '.erasure-progress' ),
154154
requestID = $action.data( 'request-id' ),
155155
nonce = $action.data( 'nonce' ),
156156
erasersCount = $action.data( 'erasers-count' ),

0 commit comments

Comments
 (0)