Skip to content

Commit 7bef190

Browse files
authored
Update site/src/pages/HealthPage/ProvisionerDaemonsPage.tsx
1 parent bbc634d commit 7bef190

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

site/src/pages/HealthPage/ProvisionerDaemonsPage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,11 @@ const parseBool = (s: string): { valid: boolean; value: boolean } => {
185185
const renderTag = (k: string, v: string) => {
186186
const { valid, value: boolValue } = parseBool(v);
187187
if (valid) {
188-
return <BooleanPill value={boolValue}>{k}</BooleanPill>;
188+
return (
189+
<BooleanPill value={boolValue}>
190+
{k}: {v}
191+
</BooleanPill>
192+
);
189193
}
190194
return (
191195
<Pill icon={<Sell />}>

0 commit comments

Comments
 (0)