Skip to content

Commit

Permalink
Unify display of app icon
Browse files Browse the repository at this point in the history
  • Loading branch information
PanderMusubi committed Jan 10, 2023
1 parent a261d8c commit 5852bbb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/src/application/Applications.tsx
@@ -1,4 +1,3 @@
import Avatar from '@material-ui/core/Avatar';
import Grid from '@material-ui/core/Grid';
import IconButton from '@material-ui/core/IconButton';
import Paper from '@material-ui/core/Paper';
Expand Down Expand Up @@ -159,7 +158,7 @@ const Row: SFC<IRowProps> = observer(
<TableRow>
<TableCell padding="default">
<div style={{display: 'flex'}}>
<Avatar src={config.get('url') + image} />
<img src={config.get('url') + image} alt="app logo" width="40" height="40" />
<IconButton onClick={fUpload} style={{height: 40}}>
<CloudUpload />
</IconButton>
Expand Down

0 comments on commit 5852bbb

Please sign in to comment.