Skip to content

Commit 1b75c60

Browse files
authored
Merge pull request #199 from PRO-Robotech/feature/dev
Feature/dev
2 parents 1413bf4 + 0765e25 commit 1b75c60

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prorobotech/openapi-k8s-toolkit",
3-
"version": "0.0.1-alpha.142",
3+
"version": "0.0.1-alpha.143",
44
"description": "ProRobotech OpenAPI k8s tools",
55
"main": "dist/openapi-k8s-toolkit.cjs.js",
66
"module": "dist/openapi-k8s-toolkit.es.js",

src/components/molecules/EnrichedTable/organisms/EnrichedTable/utils.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ export const getCellRender = ({
6363
return <ShortenedTextWithTooltip trimLength={possibleTrimLength} text={String(Number(value))} />
6464
}
6565
if (type === 'boolean') {
66-
return <div>{Boolean(value)}</div>
66+
// return <div>{Boolean(value)}</div>
67+
return value ? <CheckOutlined style={{ color: 'green' }} /> : <CloseOutlined style={{ color: 'red' }} />
6768
}
6869
if (type === 'array') {
6970
let tags: string[] = []

0 commit comments

Comments
 (0)