We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf06879 commit 287e0a7Copy full SHA for 287e0a7
blocks/eda-frontend/src/pages/Gallery.js
@@ -25,6 +25,7 @@ import Typography from '@mui/material/Typography'
25
26
import { fetchGallery } from '../redux/dashboardSlice'
27
import api from '../utils/Api'
28
+import { getDate } from '../utils/GalleryUtils'
29
30
const images = require.context('../static/gallery', true)
31
@@ -58,6 +59,9 @@ const SchematicCard = ({ sch }) => {
58
59
<Typography variant='body2' component='p'>
60
{sch.description}
61
</Typography>
62
+ <Typography variant='body2' color='textSecondary' component='p' style={{ margin: '5px 0px 0px 0px' }}>
63
+ Created on {getDate(sch.save_time)}
64
+ </Typography>
65
</CardContent>
66
</CardActionArea>
67
0 commit comments