@@ -65,36 +65,36 @@ export const REGISTRY_SCAN_HISTORY_TABLE = [
65
65
labelKey : "imageScanner.registries.configuration.scanTable.header.status" ,
66
66
value : "status.statusResult.type" ,
67
67
formatter : "RegistryStatusCellBadge" ,
68
- sort : "status" ,
68
+ sort : "status.statusResult.type " ,
69
69
width : 100 ,
70
70
} ,
71
71
{
72
72
name : "since" ,
73
73
labelKey : "imageScanner.registries.configuration.scanTable.header.since" ,
74
74
value : "status.statusResult.lastTransitionTime" ,
75
75
formatter : "Date" ,
76
- sort : "timestamp " ,
76
+ sort : "status.statusResult.lastTransitionTime:desc " ,
77
77
} ,
78
78
{
79
79
name : "progress" ,
80
80
labelKey : "imageScanner.registries.configuration.scanTable.header.progress" ,
81
81
getValue : ( row : any ) => row ,
82
- formatter : "ProgressCell " ,
82
+ formatter : "Progress " ,
83
83
sort : "progress" ,
84
84
} ,
85
85
{
86
86
name : "imagesScanned" ,
87
87
labelKey :
88
88
"imageScanner.registries.configuration.scanTable.header.imagesScanned" ,
89
89
value : "status.scannedImagesCount" ,
90
- sort : "imagesScanned " ,
90
+ sort : "status.scannedImagesCount " ,
91
91
} ,
92
92
{
93
93
name : "imagesFound" ,
94
94
labelKey :
95
95
"imageScanner.registries.configuration.scanTable.header.imagesFound" ,
96
96
value : "status.imagesCount" ,
97
- sort : "imagesFound " ,
97
+ sort : "status.imagesCount " ,
98
98
} ,
99
99
{
100
100
name : "errors" ,
@@ -133,7 +133,7 @@ export const VEX_MANAGEMENT_TABLE = [
133
133
labelKey : "imageScanner.vexManagement.table.headers.createdBy" ,
134
134
value : ( row : any ) => {
135
135
const gen = Number ( row ?. metadata ?. generation ) ;
136
- return ( gen === 1 ) ? ' Rancher' : ' Manual entry' ;
136
+ return gen === 1 ? " Rancher" : " Manual entry" ;
137
137
} ,
138
138
sort : "metadata.generation" ,
139
139
} ,
0 commit comments