Skip to content

Commit

Permalink
refactor(ci-list): 🎉 add type label
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Jan 19, 2024
1 parent b3b7ff4 commit f2c4810
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { ReactElement } from "react";
import StateCell from "../TableInformationCells/StateCell";
import { ReactElement } from "react";

interface ICloudInstancesListItemDesc {
instance: any;
Expand All @@ -18,6 +18,10 @@ export default function CloudInstancesListItemDesc({
<span className="font-medium">PS:</span>
<StateCell state={instance?.instanceState} />
</div>
<div className="flex gap-1.5">
<span className="font-medium">Type:</span>
<p>{instance?.instanceType}</p>
</div>
</div>
);
}

0 comments on commit f2c4810

Please sign in to comment.