Skip to content

Commit

Permalink
add kind ob run details
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericHeem committed Dec 7, 2023
1 parent 52e7fa8 commit d847fef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bau-ui/globalStyle/globalStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions examples/gccd/src/components/run/runDetailContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default function (context: Context) {
logsUrl,
svgUrl,
error,
kind,
} = data.val;
return loading.val
? TableSkeleton({ columnsSize: 2, rowSize: 8 })
Expand Down Expand Up @@ -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) &&
Expand Down

0 comments on commit d847fef

Please sign in to comment.