Ui 2 additional MUI replacements (#5623)
* Loader spinner * Progressbar conversion * Update Progress * Transfer operational again * Remove List/ListItem from features * Remove extra animation * Remove iconButton * Remove underline(input to be replaced) * Convert Sort to Popup * Remove unused AutoComplete component * Simplify ModalBox * Allow empty Actionbar * Adjust shapeshift icon * Simplify MUI theme (before removal) * Update tests
This commit is contained in:
@@ -101,8 +101,12 @@ class Requests extends Component {
|
||||
: (
|
||||
<Progress
|
||||
max={ 6 }
|
||||
mode={ state.type === WAITING_STATE ? 'indeterminate' : 'determinate' }
|
||||
value={ state.type === DONE_STATE ? +request.blockHeight : 6 }
|
||||
isDeterminate={ state.type !== WAITING_STATE }
|
||||
value={
|
||||
state.type === DONE_STATE
|
||||
? +request.blockHeight
|
||||
: 6
|
||||
}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user