Removed extra character

This commit is contained in:
Scott E. Graves
2018-12-12 20:00:27 -06:00
parent 538a2c5f8a
commit 2042d7140f

View File

@@ -260,7 +260,7 @@ class MountItems extends Component {
retryListCount++;
retryList.push(<Button
clicked={()=>this.cancelRetryMount(storageType, ()=> this.detectMounts())}
key={'b' + retryListCount}>Cancel {storageType} Auto-Retry ({this.state.RetryItems[storageType].RetrySeconds}s)]</Button>);
key={'b' + retryListCount}>Cancel {storageType} Remount ({this.state.RetryItems[storageType].RetrySeconds}s)</Button>);
if (retryListCount < Object.keys(this.state.RetryItems).length) {
retryList.push(<div style={{paddingTop: '8px'}} key={'d' + retryListCount}/>);
}