File tree 3 files changed +6
-2
lines changed 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ import { PageWithSubMenu } from "../components/PageWithSubMenu";
10
10
import SelectableCard from "../components/SelectableCard" ;
11
11
import Tooltip from "../components/Tooltip" ;
12
12
import vscode from '../images/vscode.svg' ;
13
+ import ideaLogo from '../images/intellijIdeaLogo.svg' ;
14
+ import golandLogo from '../images/golandLogo.svg' ;
13
15
import { getGitpodService } from "../service/service" ;
14
16
import { ThemeContext } from "../theme-context" ;
15
17
import { UserContext } from "../user-context" ;
@@ -99,12 +101,12 @@ export default function Preferences() {
99
101
< div className = "mt-4 space-x-4 flex" >
100
102
< SelectableCard className = "w-36 h-40" title = "IntelliJ IDEA" selected = { defaultDesktopIde === 'intellij' } onClick = { ( ) => actuallySetDefaultDesktopIde ( 'intellij' ) } >
101
103
< div className = "flex justify-center mt-3" >
102
- < img className = "w-16 filter-grayscale self-center" src = { vscode } />
104
+ < img className = "w-16 filter-grayscale self-center" src = { ideaLogo } />
103
105
</ div >
104
106
</ SelectableCard >
105
107
< SelectableCard className = "w-36 h-40" title = "GoLand" selected = { defaultDesktopIde === 'goland' } onClick = { ( ) => actuallySetDefaultDesktopIde ( 'goland' ) } >
106
108
< div className = "flex justify-center mt-3" >
107
- < img className = "w-16 filter-grayscale self-center" src = { vscode } />
109
+ < img className = "w-16 filter-grayscale self-center" src = { golandLogo } />
108
110
</ div >
109
111
</ SelectableCard >
110
112
</ div >
You can’t perform that action at this time.
0 commit comments