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.
<SelectIDEComponent />
1 parent 6c955c5 commit e2f26e4Copy full SHA for e2f26e4
components/dashboard/src/components/SelectIDEComponent.tsx
@@ -4,7 +4,7 @@
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
-import { IDEOption, IDEOptions } from "@gitpod/gitpod-protocol/lib/ide-protocol";
+import { IDEOption, IDEOptions, makeIdeVersionHumanReadable } from "@gitpod/gitpod-protocol";
8
import { useCallback, useEffect, useState } from "react";
9
import { getGitpodService } from "../service/service";
10
import { DropDown2, DropDown2Element } from "./DropDown2";
@@ -149,7 +149,7 @@ function IdeOptionElementInDropDown(p: IdeOptionElementProps): JSX.Element {
149
{version && (
150
<>
151
<div className="mx-1">·</div>
152
- <div>{version}</div>
+ <div>{makeIdeVersionHumanReadable(version)}</div>
153
</>
154
)}
155
{label && (
0 commit comments