File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
ui/src/components/ExtensionComponent Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
1212 CircularProgress ,
1313 Box ,
1414} from "@mui/material" ;
15- import OpenInNewIcon from "@mui/icons-material/OpenInNew " ;
15+ import { ExternalLinkIcon } from "@sistent/sistent " ;
1616import { DesignIcon } from "@sistent/sistent" ;
1717
1818import { getFormatDate } from "@sistent/sistent" ;
@@ -98,13 +98,14 @@ export default function RecentDesignsCard({ isDarkTheme }) {
9898 { designs . map ( ( design ) => (
9999 < ListItem
100100 key = { design . id }
101+ onClick = { ( ) => openDesign ( design ) }
101102 secondaryAction = {
102103 < IconButton
103104 onClick = { ( ) => openDesign ( design ) }
104105 edge = "end"
105106 aria-label = "open"
106107 >
107- < OpenInNewIcon />
108+ < ExternalLinkIcon fill = "#eee" />
108109 </ IconButton >
109110 }
110111 >
You can’t perform that action at this time.
0 commit comments