Skip to content

Commit e2f26e4

Browse files
committed
Update for <SelectIDEComponent />
1 parent 6c955c5 commit e2f26e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dashboard/src/components/SelectIDEComponent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* See License.AGPL.txt in the project root for license information.
55
*/
66

7-
import { IDEOption, IDEOptions } from "@gitpod/gitpod-protocol/lib/ide-protocol";
7+
import { IDEOption, IDEOptions, makeIdeVersionHumanReadable } from "@gitpod/gitpod-protocol";
88
import { useCallback, useEffect, useState } from "react";
99
import { getGitpodService } from "../service/service";
1010
import { DropDown2, DropDown2Element } from "./DropDown2";
@@ -149,7 +149,7 @@ function IdeOptionElementInDropDown(p: IdeOptionElementProps): JSX.Element {
149149
{version && (
150150
<>
151151
<div className="mx-1">&middot;</div>
152-
<div>{version}</div>
152+
<div>{makeIdeVersionHumanReadable(version)}</div>
153153
</>
154154
)}
155155
{label && (

0 commit comments

Comments
 (0)