Skip to content

Commit

Permalink
fix: Add icons for apps in "Related apps list" (#1425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hickays authored Oct 27, 2023
1 parent fc4c036 commit 292d4c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const LikedItem: FC<{ type?: 'plugin' | 'app'; appStatus?: boolean; detail: Rela
return (
<Link className={s.itemWrapper} href={`/app/${detail?.id}/overview`}>
<div className={s.iconWrapper}>
<AppIcon size='tiny' />
<AppIcon size='tiny' icon={detail?.icon} background={detail?.icon_background}/>
{type === 'app' && (
<div className={s.statusPoint}>
<Indicator color={appStatus ? 'green' : 'gray'} />
Expand Down

0 comments on commit 292d4c0

Please sign in to comment.