Skip to content
Snippets Groups Projects
Commit 1690f55f authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Changed double quotes to single quotes.

parent cf1ed892
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -25,9 +25,9 @@ import logger from '@src/js/common/logger.js'
const styles = theme => ({
container: {
fontFamily: theme.typography.fontFamily,
display: "grid",
gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))",
gridGap: "0.5rem"
display: 'grid',
gridTemplateColumns: 'repeat(auto-fill, minmax(8rem, 1fr))',
gridGap: '0.5rem'
}
});
......
......@@ -21,7 +21,7 @@ import Grid from '@material-ui/core/Grid'
import Card from '@material-ui/core/Card'
import { CardContent, CardMedia } from '@material-ui/core'
import ItemIcon from '@src/js/components/database/data-browser/ItemIcon.jsx'
import autoBind from "auto-bind";
import autoBind from 'auto-bind';
const styles = (theme) => ({
cell: {
......
......@@ -23,8 +23,8 @@ import Table from '@material-ui/core/Table'
import TableBody from '@material-ui/core/TableBody'
import TableCell from '@material-ui/core/TableCell'
import TableRow from '@material-ui/core/TableRow'
import Header from "@src/js/components/common/form/Header.jsx";
import ItemIcon from "@src/js/components/database/data-browser/ItemIcon.jsx";
import Header from '@src/js/components/common/form/Header.jsx';
import ItemIcon from '@src/js/components/database/data-browser/ItemIcon.jsx';
import { withStyles } from "@material-ui/core/styles";
const styles = () => ({
......@@ -47,6 +47,7 @@ class InfoPanel extends React.Component {
configuration
} = this.props
// TODO: extract strings to messages
return (file &&
<Container>
<Header size='big'>{file.name}</Header>
......@@ -54,19 +55,19 @@ class InfoPanel extends React.Component {
<Table>
<TableBody>
<TableRow>
<TableCell variant='head'>Size</TableCell>
<TableCell variant='head' component='th'>Size</TableCell>
<TableCell>{file.size}</TableCell>
</TableRow>
<TableRow>
<TableCell variant='head'>Created</TableCell>
<TableCell variant='head' component='th'>Created</TableCell>
<TableCell>{file.creationTime.toLocaleString()}</TableCell>
</TableRow>
<TableRow>
<TableCell variant='head'>Modified</TableCell>
<TableCell variant='head' component='th'>Modified</TableCell>
<TableCell>{file.lastModifiedTime.toLocaleString()}</TableCell>
</TableRow>
<TableRow>
<TableCell variant='head'>Accessed</TableCell>
<TableCell variant='head' component='th'>Accessed</TableCell>
<TableCell>{file.lastAccessTime.toLocaleString()}</TableCell>
</TableRow>
</TableBody>
......
......@@ -26,8 +26,8 @@ import SettingsIcon from '@material-ui/icons/Settings'
import SearchIcon from '@material-ui/icons/Search'
import InfoIcon from '@material-ui/icons/InfoOutlined'
import CreateNewFolderIcon from '@material-ui/icons/CreateNewFolderOutlined'
import autoBind from "auto-bind";
import { ToggleButton } from "@material-ui/lab";
import autoBind from 'auto-bind'
import { ToggleButton } from '@material-ui/lab'
const styles = () => ({})
......
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