diff --git a/bau-ui/globalStyle/globalStyle.js b/bau-ui/globalStyle/globalStyle.js index 065b3e34..6620ac57 100644 --- a/bau-ui/globalStyle/globalStyle.js +++ b/bau-ui/globalStyle/globalStyle.js @@ -118,7 +118,7 @@ export default function globalStyle( ${variantToCss()} --color-content: hsl(0, 0%, 10%); --color-content-inverse: hsl(0, 0%, 95%); - --color-content-secondary: hsl(0, 0%, 60%); + --color-content-secondary: hsl(0, 0%, 40%); --background-color: var(--color-white); --global-border-width: 1px; --global-radius: 0.2rem; diff --git a/examples/gccd/src/components/run/runDetailContent.ts b/examples/gccd/src/components/run/runDetailContent.ts index edfc8efb..48c885c2 100644 --- a/examples/gccd/src/components/run/runDetailContent.ts +++ b/examples/gccd/src/components/run/runDetailContent.ts @@ -28,6 +28,7 @@ export default function (context: Context) { logsUrl, svgUrl, error, + kind, } = data.val; return loading.val ? TableSkeleton({ columnsSize: 2, rowSize: 8 }) @@ -68,6 +69,7 @@ export default function (context: Context) { ) ), li(label("RunId"), span(run_id)), + li(label("Kind"), span(kind)), li(label("Status"), span(RunStatus({ status, error }))) ), isCompleted(status) &&