1
0
Fork 0

fix render event styling

This commit is contained in:
Sean Sube 2024-05-19 16:48:36 -05:00
parent db513fb6ae
commit 18c56f9cf3
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 21 additions and 19 deletions

View File

@ -1,4 +1,4 @@
import { Avatar, IconButton, ImageList, ImageListItem, ListItem, ListItemAvatar, ListItemText, Typography } from '@mui/material';
import { Avatar, IconButton, ImageList, ImageListItem, ListItem, ListItemAvatar, ListItemText, Stack, Typography } from '@mui/material';
import React, { Fragment, MutableRefObject } from 'react';
import { Maybe, doesExist } from '@apextoaster/js-utils';
@ -192,6 +192,7 @@ export function RenderEventItem(props: EventItemProps) {
<Camera />
</Avatar>
</ListItemAvatar>
<Stack direction="column" spacing={2}>
<ListItemText
primary={title}
secondary={
@ -210,6 +211,7 @@ export function RenderEventItem(props: EventItemProps) {
</a>
</ImageListItem>)}
</ImageList>
</Stack>
</ListItem>;
}