@@ -147,37 +147,11 @@ function getColumns(
147147 key : 'id' ,
148148 hideInSearch : true ,
149149 } ,
150- {
151- title : t ( 'model:transport.property.clusterId' ) ,
152- width : 200 ,
153- dataIndex : 'clusterId' ,
154- key : 'clusterId' ,
155- render : ( _ , record ) => (
156- < Link to = { `${ resolveRoute ( '../instances/' ) } /${ record . clusterId } ` } >
157- { record . clusterId }
158- </ Link >
159- ) ,
160- } ,
161- {
162- title : t ( 'model:transport.property.startTime' ) ,
163- width : 150 ,
164- dataIndex : 'startTime' ,
165- key : 'startTime' ,
166- valueType : 'dateTime' ,
167- } ,
168- {
169- title : t ( 'model:transport.property.endTime' ) ,
170- width : 150 ,
171- dataIndex : 'endTime' ,
172- key : 'endTime' ,
173- valueType : 'dateTime' ,
174- } ,
175150 {
176151 title : t ( 'model:transport.property.type' ) ,
177152 width : 80 ,
178153 dataIndex : 'transportType' ,
179154 key : 'type' ,
180- // transport.status === task.status
181155 hideInSearch : true ,
182156 renderText : ( _ , record ) =>
183157 t ( `model:transport.type.${ record . transportType } ` ) ,
@@ -209,11 +183,29 @@ function getColumns(
209183 hideInSearch : true ,
210184 } ,
211185 {
212- title : t ( 'model:transport.property.fileName' ) ,
213- width : 160 ,
214- dataIndex : 'zipName' ,
215- key : 'fileName' ,
216- hideInSearch : true ,
186+ title : t ( 'model:transport.property.clusterId' ) ,
187+ width : 200 ,
188+ dataIndex : 'clusterId' ,
189+ key : 'clusterId' ,
190+ render : ( _ , record ) => (
191+ < Link to = { `${ resolveRoute ( '../instances/' ) } /${ record . clusterId } ` } >
192+ { record . clusterId }
193+ </ Link >
194+ ) ,
195+ } ,
196+ {
197+ title : t ( 'model:transport.property.startTime' ) ,
198+ width : 150 ,
199+ dataIndex : 'startTime' ,
200+ key : 'startTime' ,
201+ valueType : 'dateTime' ,
202+ } ,
203+ {
204+ title : t ( 'model:transport.property.endTime' ) ,
205+ width : 150 ,
206+ dataIndex : 'endTime' ,
207+ key : 'endTime' ,
208+ valueType : 'dateTime' ,
217209 } ,
218210 {
219211 title : t ( 'model:transport.property.filePath' ) ,
0 commit comments