We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a203026 commit 77f5d27Copy full SHA for 77f5d27
components/dashboard/src/user-settings/SelectIDE.tsx
@@ -155,7 +155,16 @@ export default function SelectIDE(props: SelectIDEProps) {
155
/>
156
157
<CheckboxInputField
158
- label="Launch in JetBrains Toolbox"
+ label={
159
+ <span className="flex items-center gap-2">
160
+ Launch in JetBrains Toolbox{" "}
161
+ <PillLabel type="warn">
162
+ <a href="https://www.gitpod.io/docs/references/gitpod-releases">
163
+ <span className="text-xs">BETA</span>
164
+ </a>
165
+ </PillLabel>
166
+ </span>
167
+ }
168
hint={<span>Launch JetBrains IDEs in the JetBrains Toolbox.</span>}
169
checked={preferToolbox}
170
onChange={(checked) => actuallySetPreferToolbox(checked)}
0 commit comments