32-bit releases
This commit is contained in:
@@ -117,6 +117,9 @@ class App extends IPCContainer {
|
||||
const scPrimeSupported = this.props.LocationsLookup[selectedVersion] &&
|
||||
this.props.LocationsLookup[selectedVersion].siaprime_support;
|
||||
|
||||
const siaSupported = this.props.LocationsLookup[selectedVersion] &&
|
||||
this.props.LocationsLookup[selectedVersion].sia_support;
|
||||
|
||||
const showConfig = !missingDependencies &&
|
||||
this.props.DisplayConfiguration &&
|
||||
!this.props.RebootRequired;
|
||||
@@ -196,6 +199,7 @@ class App extends IPCContainer {
|
||||
<MountItems gooboxS3Supported={gooboxS3Supported}
|
||||
remoteSupported={remoteSupported}
|
||||
scPrimeSupported={scPrimeSupported}
|
||||
siaSupported={siaSupported}
|
||||
skynetSupported={skynetSupported}/>
|
||||
</Box>
|
||||
));
|
||||
|
||||
@@ -224,7 +224,7 @@ class MountItems extends IPCContainer {
|
||||
return ((i === 'GooboxS3') && this.props.gooboxS3Supported) ||
|
||||
((i === 'Skynet') && this.props.skynetSupported) ||
|
||||
((i === 'ScPrime') && this.props.scPrimeSupported) ||
|
||||
((i !== 'GooboxS3') && (i !== 'Skynet') && (i !== 'ScPrime'));
|
||||
((i === 'Sia') && this.props.siaSupported);
|
||||
});
|
||||
|
||||
let remoteList = [];
|
||||
|
||||
Reference in New Issue
Block a user