File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export type DatasetResponse = {
2222 job_name : string ;
2323 job_status : string ;
2424 inference_type : string ;
25+ completed_rows : number ; // Add this line
2526} ;
2627
2728export type ModelParameters = {
Original file line number Diff line number Diff line change @@ -147,7 +147,16 @@ const DatasetsTab: React.FC<Props> = ({ hideSearch = false }) => {
147147 width : 80 ,
148148 align : 'center' ,
149149 sorter : sortItemsByKey ( 'total_count' )
150- } , {
150+ } ,
151+ {
152+ key : 'completed_rows' ,
153+ title : 'Completed Rows' ,
154+ dataIndex : 'completed_rows' ,
155+ width : 80 ,
156+ align : 'center' ,
157+ sorter : sortItemsByKey ( 'completed_rows' )
158+ } ,
159+ {
151160 key : 'use_case' ,
152161 title : 'Use Case' ,
153162 dataIndex : 'use_case' ,
You can’t perform that action at this time.
0 commit comments