Skip to content

Commit 44a1a06

Browse files
authored
Merge pull request #727 from jembi/CU-86c13v9ej_Tiles--buttons
feat: enhance AppCard with clickable functionality and pointer cursor
2 parents dc2fe8f + 775cceb commit 44a1a06

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/portal-app/src/components/AppCard/AppCard.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ const AppCard = ({app}) => {
2222
}, [])
2323
return (
2424
<div>
25-
<Card sx={{width: '320px'}} elevation={3}>
25+
<Card
26+
sx={{width: '320px', cursor: 'pointer'}}
27+
onClick={() => (window.location.href = appPath)}
28+
elevation={3}
29+
>
2630
<CardHeader
2731
href={appPath}
2832
avatar={

0 commit comments

Comments
 (0)