@@ -23,43 +23,43 @@ let table = $('#collection_table').DataTable({
23
23
{
24
24
label : '0 URLs' ,
25
25
value : function ( rowData , rowIdx ) {
26
- return $ ( rowData [ 4 ] ) . text ( ) == 0 ;
26
+ return $ ( rowData [ 3 ] ) . text ( ) == 0 ;
27
27
}
28
28
} ,
29
29
{
30
30
label : '1 solo URL' ,
31
31
value : function ( rowData , rowIdx ) {
32
- return $ ( rowData [ 4 ] ) . text ( ) == 1 ;
32
+ return $ ( rowData [ 3 ] ) . text ( ) == 1 ;
33
33
}
34
34
} ,
35
35
{
36
36
label : '1 to 100 URLs' ,
37
37
value : function ( rowData , rowIdx ) {
38
- return $ ( rowData [ 4 ] ) . text ( ) <= 100 && $ ( rowData [ 4 ] ) . text ( ) > 1 ;
38
+ return $ ( rowData [ 3 ] ) . text ( ) <= 100 && $ ( rowData [ 3 ] ) . text ( ) > 1 ;
39
39
}
40
40
} ,
41
41
{
42
42
label : '100 to 1,000 URLs' ,
43
43
value : function ( rowData , rowIdx ) {
44
- return $ ( rowData [ 4 ] ) . text ( ) <= 1000 && $ ( rowData [ 4 ] ) . text ( ) > 100 ;
44
+ return $ ( rowData [ 3 ] ) . text ( ) <= 1000 && $ ( rowData [ 3 ] ) . text ( ) > 100 ;
45
45
}
46
46
} ,
47
47
{
48
48
label : '1000 to 10,000 URLs' ,
49
49
value : function ( rowData , rowIdx ) {
50
- return $ ( rowData [ 4 ] ) . text ( ) <= 10000 && $ ( rowData [ 4 ] ) . text ( ) > 1000 ;
50
+ return $ ( rowData [ 3 ] ) . text ( ) <= 10000 && $ ( rowData [ 3 ] ) . text ( ) > 1000 ;
51
51
}
52
52
} ,
53
53
{
54
54
label : '10000 to 100,000 URLs' ,
55
55
value : function ( rowData , rowIdx ) {
56
- return $ ( rowData [ 4 ] ) . text ( ) <= 100000 && $ ( rowData [ 4 ] ) . text ( ) > 10000 ;
56
+ return $ ( rowData [ 3 ] ) . text ( ) <= 100000 && $ ( rowData [ 3 ] ) . text ( ) > 10000 ;
57
57
}
58
58
} ,
59
59
{
60
60
label : 'Over 100,000 URLs' ,
61
61
value : function ( rowData , rowIdx ) {
62
- return $ ( rowData [ 4 ] ) . text ( ) > 100000 ;
62
+ return $ ( rowData [ 3 ] ) . text ( ) > 100000 ;
63
63
}
64
64
}
65
65
]
0 commit comments