Skip to content

Commit

Permalink
BASIRA #286 - Fixing issue with image info layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dleadbetter committed Dec 19, 2024
1 parent 8e9e7b1 commit 13bcc68
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions client/src/components/RecordPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import React, {
import { Link } from 'react-router-dom';
import {
Button,
Container, Grid,
Container,
Grid,
Header as SemanticHeader,
Loader,
Menu,
Expand Down Expand Up @@ -172,9 +173,6 @@ const Image = (props: ImageProps) => (
<LazyImage
src={props.item.file_url}
/>
<ImageInfo
item={props.item}
/>
</div>
);

Expand Down Expand Up @@ -203,6 +201,13 @@ const Header = (props: HeaderProps) => (
>
{ props.children }
</Grid.Column>
<Grid.Column
width={16}
>
<ImageInfo
item={props.image}
/>
</Grid.Column>
</Grid>
);

Expand Down

0 comments on commit 13bcc68

Please sign in to comment.