Skip to content

Commit

Permalink
feat(version): release 0.21.5 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Dec 8, 2023
1 parent 8537850 commit e5ea204
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 32 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img src="https://img.shields.io/badge/nodejs-18.18.2-dgreen" alt="node">
</a>
<a href="https://github.com/robolaunch/ui/releases">
<img src="https://img.shields.io/badge/release-v0.21.4-red" alt="release">
<img src="https://img.shields.io/badge/release-v0.21.5-red" alt="release">
</a>
<a href="#">
<img src="https://img.shields.io/badge/language-typescript-blue" alt="language">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.21.4",
"version": "0.21.5",
"private": true,
"scripts": {
"dev": "react-scripts start",
Expand Down
22 changes: 0 additions & 22 deletions src/components/RobotResource/RobotResource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,6 @@ export default function RobotResource(): ReactElement {
</ContentLoader>
)}
</div>
<div className="col-span-1 flex items-center gap-2">
<BsFillCpuFill size={16} color="#666666" />
{pagesState.instance?.cloudInstanceResource?.gpuUsage?.[0]
?.gpuModel ? (
<span className="text-xs font-light">
{
pagesState.instance?.cloudInstanceResource?.gpuUsage?.[0]
?.gpuModel
}
</span>
) : (
<ContentLoader
speed={1}
width={64}
height={12}
backgroundColor="#f6f6ef"
foregroundColor="#e8e8e3"
>
<rect width="64" height="12" />
</ContentLoader>
)}
</div>
<div className="col-span-1 flex items-center gap-2">
<FaMemory size={16} color="#666666" />

Expand Down
8 changes: 0 additions & 8 deletions src/pages/DashboardsPage/CIDashboard/CIDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { SiKubernetes } from "react-icons/si";
import useMain from "../../../hooks/useMain";
import { useParams } from "react-router-dom";
import { RiCpuLine } from "react-icons/ri";
import { BsGpuCard } from "react-icons/bs";
import { ReactElement } from "react";

export default function CIDashboard(): ReactElement {
Expand Down Expand Up @@ -111,13 +110,6 @@ export default function CIDashboard(): ReactElement {
value:
pagesState?.instance?.cloudInstanceResource?.kubernetesVersion,
},
{
icon: <BsGpuCard size={16} />,
title: "GPU Model",
value:
pagesState?.instance?.cloudInstanceResource?.gpuUsage?.[0]
?.gpuModel,
},
]}
/>
}
Expand Down

0 comments on commit e5ea204

Please sign in to comment.