[Continue S3 support] [Handle set configuration errors]

This commit is contained in:
2020-08-15 22:29:55 -05:00
parent 25e689b033
commit d8c87872d2
8 changed files with 119 additions and 78 deletions

View File

@@ -183,7 +183,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(props => {
<Text
col={configButton ? 6 : 0}
rowSpan={5}
text={props.remote ? props.provider.substr(6) : props.provider}
text={props.remote ? props.provider.substr(6) : props.s3 ? props.provider.substr(2) : props.provider}
type={'Heading2'}/>
{((props.provider === 'Skynet') && (props.MState.Mounted)) ? (
<a href={'#'}

View File

@@ -80,6 +80,7 @@ class MountItems extends IPCContainer {
this.sendRequest(Constants.IPC_Detect_Mount, {
RemoteMounts: this.props.RemoteMounts,
S3Mounts: this.props.S3Mounts,
Provider: provider,
Version: this.props.InstalledVersion,
});