Skip to content
Snippets Groups Projects
Commit 700df1cd authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Fixed the info panel that did not show up.

parent 922a83a9
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -28,7 +28,6 @@ const styles = theme => ({
},
flexContainer: {
display: 'flex',
flexWrap: 'wrap',
'&>*': {
flex: '0 0 auto',
padding: theme.spacing(1),
......@@ -122,11 +121,10 @@ class DataBrowser extends React.Component {
})
}
async load(params) {
async load() {
await this.login()
const files = await this.listFiles()
this.setState({ files: files })
console.log('Received data: ' + files)
this.setState({ files })
return await files.map(file => ({ id: file.name, ...file }))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment