fix: add ID photo to Photos & files
This commit is contained in:
parent
18c92d2536
commit
f8ca83921c
3 changed files with 26 additions and 13 deletions
|
|
@ -38,17 +38,19 @@ const PhotosCarousel = memo(({ photosData, timezone }) => {
|
|||
)}
|
||||
<div className={classes.secondRow}>
|
||||
<div>
|
||||
<div>
|
||||
<Label>Date</Label>
|
||||
<div>
|
||||
{photosData &&
|
||||
formatDate(
|
||||
photosData[currentIndex]?.date,
|
||||
timezone,
|
||||
'yyyy-MM-dd HH:mm'
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
{photosData[currentIndex].date && (
|
||||
<>
|
||||
<Label>Date</Label>
|
||||
<div>
|
||||
{photosData &&
|
||||
formatDate(
|
||||
photosData[currentIndex]?.date,
|
||||
timezone,
|
||||
'yyyy-MM-dd HH:mm'
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
<div>
|
||||
<Label>Taken by</Label>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue