Skip to content

Commit

Permalink
fixup! Adds applications icons to navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattheis committed Oct 22, 2023
1 parent 7da891f commit 7034019
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ui/src/layout/Navigation.tsx
Expand Up @@ -66,8 +66,12 @@ class Navigation extends Component<
to={'/messages/' + app.id}
key={app.id}>
<ListItem button>
<ListItemAvatar>
<Avatar src={app.image} variant="square" />
<ListItemAvatar style={{minWidth: 42}}>
<Avatar
style={{width: 32, height: 32}}
src={app.image}
variant="square"
/>
</ListItemAvatar>
<ListItemText primary={app.name} />
</ListItem>
Expand Down

0 comments on commit 7034019

Please sign in to comment.