mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
browser: Do not show "Loading..." if there are no buckets. (#3904)
This commit is contained in:
parent
a27d1b3d86
commit
96050c1e21
@ -603,7 +603,7 @@ export default class Browse extends React.Component {
|
|||||||
checkObject={ this.checkObject.bind(this) }
|
checkObject={ this.checkObject.bind(this) }
|
||||||
checkedObjectsArray={ checkedObjects } />
|
checkedObjectsArray={ checkedObjects } />
|
||||||
</InfiniteScroll>
|
</InfiniteScroll>
|
||||||
<div className="text-center" style={ { display: istruncated ? 'block' : 'none' } }>
|
<div className="text-center" style={ { display: (istruncated && currentBucket) ? 'block' : 'none' } }>
|
||||||
<span>Loading...</span>
|
<span>Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user