We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d623f commit e396cceCopy full SHA for e396cce
site/src/components/AppLink/BaseIcon.tsx
@@ -4,7 +4,9 @@ import ComputerIcon from "@material-ui/icons/Computer"
4
5
export const BaseIcon: FC<{ app: WorkspaceApp }> = ({ app }) => {
6
return app.icon ? (
7
- <img alt={`${app.display_name} Icon`} src={app.icon} />
+ <img alt={`${app.display_name} Icon`} src={app.icon} style={{
8
+ pointerEvents: "none",
9
+ }} />
10
) : (
11
<ComputerIcon />
12
)
0 commit comments