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 86e4b3b commit b5f14aaCopy full SHA for b5f14aa
site/src/components/AppLink/BaseIcon.tsx
@@ -4,7 +4,13 @@ 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
8
+ alt={`${app.display_name} Icon`}
9
+ src={app.icon}
10
+ style={{
11
+ pointerEvents: "none",
12
+ }}
13
+ />
14
) : (
15
<ComputerIcon />
16
)
0 commit comments