File tree 1 file changed +8
-2
lines changed
src/renderer/main/components
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -216,21 +216,27 @@ class QSPR extends React.Component {
216
216
< Col span = { 3 } />
217
217
< Col span = { 21 } >
218
218
< Progress percent = { this . props . progressPercent [ i ] } status = { this . props . progressStatus [ i ] } strokeWidth = { 20 } />
219
+ < div style = { { top : 0 , position : 'absolute' , color :'#000' , marginLeft : 20 } } >
220
+ { this . props . runners [ i ] . caseRuns } /{ this . props . runners [ i ] . caseCount } ,
221
+ { this . props . runners [ i ] . statusText }
222
+ </ div >
219
223
</ Col >
220
224
</ Row >
221
225
)
222
226
}
223
227
return (
224
228
< div >
225
- < Progress type = "circle" percent = { this . props . progressPercent [ 0 ] } status = { this . props . progressStatus [ 0 ] } format = { percent => `${ this . props . runners [ 0 ] . caseRuns } /${ this . props . runners [ 0 ] . caseCount } ` } />
226
- { this . props . runners [ 0 ] . statusText }
227
229
< Row style = { { marginTop : 20 } } >
228
230
< Col span = { 3 } >
229
231
< Button disabled = { this . props . isExecuting } type = "primary" shape = "circle" icon = "plus" size = "small" style = { { marginLeft : 5 } } onClick = { ( ) => store . dispatch ( { type : 'qspr/increaseRunCount' } ) } />
230
232
< Button disabled = { this . props . isExecuting } type = "primary" shape = "circle" icon = "minus" size = "small" style = { { marginLeft : 5 } } onClick = { ( ) => store . dispatch ( { type : 'qspr/decreaseRunCount' } ) } />
231
233
</ Col >
232
234
< Col span = { 21 } >
233
235
< Progress percent = { this . props . progressPercent [ 0 ] } status = { this . props . progressStatus [ 0 ] } strokeWidth = { 20 } />
236
+ < div style = { { top : 0 , position : 'absolute' , color :'#000' , marginLeft : 20 } } >
237
+ { this . props . runners [ 0 ] . caseRuns } /{ this . props . runners [ 0 ] . caseCount } ,
238
+ { this . props . runners [ 0 ] . statusText }
239
+ </ div >
234
240
</ Col >
235
241
</ Row >
236
242
{ mutiRunns }
You can’t perform that action at this time.
0 commit comments