File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sde_indexing_helper/static/js Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -519,21 +519,21 @@ function initializeDataTable() {
519
519
$ ( "#curatedUrlFilter" ) . on (
520
520
"beforeinput" ,
521
521
DataTable . util . debounce ( function ( val ) {
522
- delta_urls_table . columns ( 0 ) . search ( this . value ) . draw ( ) ;
522
+ curated_urls_table . columns ( 0 ) . search ( this . value ) . draw ( ) ;
523
523
} , 1000 )
524
524
) ;
525
525
526
526
$ ( "#curatedScrapedTitleFilter" ) . on (
527
527
"beforeinput" ,
528
528
DataTable . util . debounce ( function ( val ) {
529
- delta_urls_table . columns ( 2 ) . search ( this . value ) . draw ( ) ;
529
+ curated_urls_table . columns ( 2 ) . search ( this . value ) . draw ( ) ;
530
530
} , 1000 )
531
531
) ;
532
532
533
533
$ ( "#curatedNewTitleFilter" ) . on (
534
534
"beforeinput" ,
535
535
DataTable . util . debounce ( function ( val ) {
536
- delta_urls_table . columns ( 3 ) . search ( this . value ) . draw ( ) ;
536
+ curated_urls_table . columns ( 3 ) . search ( this . value ) . draw ( ) ;
537
537
} , 1000 )
538
538
) ;
539
539
You can’t perform that action at this time.
0 commit comments