@@ -388,12 +388,16 @@ function initializeDataTable() {
388
388
class : "text-center whiteText" ,
389
389
sortable : true ,
390
390
render : function ( data , type , row ) {
391
- return `<div style="display: flex; align-items: center; justify-content: center;">
392
- <span style="min-width: 50px; text-align: right; padding-right: 10px;">${ data } </span>
393
- <button type="button" class="btn btn-sm view-exclude-pattern-urls" data-row-id="${ row . id } ">
394
- <i class="fa fa-eye"></i>
395
- </button>
396
- </div>` ;
391
+ return `
392
+ <div style="display: flex; align-items: center; justify-content: center;">
393
+ <span style="min-width: 50px; text-align: right; padding-right: 10px;">
394
+ ${ data }
395
+ </span>
396
+ <button type="button" class="btn btn-sm view-exclude-pattern-urls" data-row-id="${ row . id } ">
397
+ <i class="fa fa-eye"></i>
398
+ </button>
399
+ </div>
400
+ ` ;
397
401
} ,
398
402
} ,
399
403
{
@@ -476,12 +480,16 @@ function initializeDataTable() {
476
480
class : "text-center whiteText" ,
477
481
sortable : true ,
478
482
render : function ( data , type , row ) {
479
- return `<div style="display: flex; align-items: center; justify-content: center;">
480
- <span style="min-width: 50px; text-align: right; padding-right: 10px;">${ data } </span>
481
- <button type="button" class="btn btn-sm view-include-pattern-urls" data-row-id="${ row . id } ">
482
- <i class="fa fa-eye"></i>
483
- </button>
484
- </div>` ;
483
+ return `
484
+ <div style="display: flex; align-items: center; justify-content: center;">
485
+ <span style="min-width: 50px; text-align: right; padding-right: 10px;">
486
+ ${ data }
487
+ </span>
488
+ <button type="button" class="btn btn-sm view-include-pattern-urls" data-row-id="${ row . id } ">
489
+ <i class="fa fa-eye"></i>
490
+ </button>
491
+ </div>
492
+ ` ;
485
493
} ,
486
494
} ,
487
495
{
@@ -564,12 +572,16 @@ function initializeDataTable() {
564
572
class : "text-center whiteText" ,
565
573
sortable : true ,
566
574
render : function ( data , type , row ) {
567
- return `<div style="display: flex; align-items: center; justify-content: center;">
568
- <span style="min-width: 50px; text-align: right; padding-right: 10px;">${ data } </span>
569
- <button type="button" class="btn btn-sm view-title-pattern-urls" data-row-id="${ row . id } ">
570
- <i class="fa fa-eye"></i>
571
- </button>
572
- </div>` ;
575
+ return `
576
+ <div style="display: flex; align-items: center; justify-content: center;">
577
+ <span style="min-width: 50px; text-align: right; padding-right: 10px;">
578
+ ${ data }
579
+ </span>
580
+ <button type="button" class="btn btn-sm view-title-pattern-urls" data-row-id="${ row . id } ">
581
+ <i class="fa fa-eye"></i>
582
+ </button>
583
+ </div>
584
+ ` ;
573
585
} ,
574
586
} ,
575
587
{
@@ -684,12 +696,16 @@ function initializeDataTable() {
684
696
class : "text-center whiteText" ,
685
697
sortable : true ,
686
698
render : function ( data , type , row ) {
687
- return `<div style="display: flex; align-items: center; justify-content: center;">
688
- <span style="min-width: 50px; text-align: right; padding-right: 10px;">${ data } </span>
689
- <button type="button" class="btn btn-sm view-document-type-pattern-urls" data-row-id="${ row . id } ">
690
- <i class="fa fa-eye"></i>
691
- </button>
692
- </div>` ;
699
+ return `
700
+ <div style="display: flex; align-items: center; justify-content: center;">
701
+ <span style="min-width: 50px; text-align: right; padding-right: 10px;">
702
+ ${ data }
703
+ </span>
704
+ <button type="button" class="btn btn-sm view-document-type-pattern-urls" data-row-id="${ row . id } ">
705
+ <i class="fa fa-eye"></i>
706
+ </button>
707
+ </div>
708
+ ` ;
693
709
} ,
694
710
} ,
695
711
0 commit comments