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 {
12
12
CircularProgress ,
13
13
Box ,
14
14
} from "@mui/material" ;
15
- import OpenInNewIcon from "@mui/icons-material/OpenInNew " ;
15
+ import { ExternalLinkIcon } from "@sistent/sistent " ;
16
16
import { DesignIcon } from "@sistent/sistent" ;
17
17
18
18
import { getFormatDate } from "@sistent/sistent" ;
@@ -98,13 +98,14 @@ export default function RecentDesignsCard({ isDarkTheme }) {
98
98
{ designs . map ( ( design ) => (
99
99
< ListItem
100
100
key = { design . id }
101
+ onClick = { ( ) => openDesign ( design ) }
101
102
secondaryAction = {
102
103
< IconButton
103
104
onClick = { ( ) => openDesign ( design ) }
104
105
edge = "end"
105
106
aria-label = "open"
106
107
>
107
- < OpenInNewIcon />
108
+ < ExternalLinkIcon fill = "#eee" />
108
109
</ IconButton >
109
110
}
110
111
>
You can’t perform that action at this time.
0 commit comments