Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update beta notice for the JetBrains integration #15371

Merged
merged 1 commit into from
Dec 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions components/dashboard/src/settings/SelectIDE.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { getGitpodService } from "../service/service";
import { UserContext } from "../user-context";
import CheckBox from "../components/CheckBox";
import { User } from "@gitpod/gitpod-protocol";
import PillLabel from "../components/PillLabel";

export type IDEChangedTrackLocation = "workspace_list" | "workspace_start" | "preferences";
interface SelectIDEProps {
Expand Down Expand Up @@ -105,24 +106,21 @@ export default function SelectIDE(props: SelectIDEProps) {
</InfoBox>
)}

<p className="text-left w-full text-gray-500 dark:text-gray-400">
The <strong>JetBrains desktop IDEs</strong> are currently in beta.{" "}
<p className="text-left w-full text-gray-400 dark:text-gray-500">
<strong>JetBrains </strong> integration is currently in{" "}
<PillLabel type="warn" className="font-semibold mt-2 ml-0 py-0.5 px-1 self-center">
<a href="https://www.gitpod.io/docs/references/gitpod-releases">
<span className="text-xs">Beta</span>
</a>
</PillLabel>
&nbsp;&middot;&nbsp;
<a
href="https://github.com/gitpod-io/gitpod/issues/6576"
target="gitpod-feedback-issue"
rel="noopener"
className="gp-link"
>
Send feedback
</a>{" "}
·{" "}
<a
href="https://www.gitpod.io/docs/integrations/jetbrains"
target="_blank"
rel="noopener noreferrer"
className="gp-link"
>
Documentation
Send feedback
</a>
</p>
</>
Expand Down