Skip to content

Commit 389ce12

Browse files
authored
fix: render boolean fields as true/false in ast tree view (#185)
1 parent a076f48 commit 389ce12

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/lib/render-value.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,5 @@ export const renderValue = (value: unknown): string[] => {
2424
];
2525
}
2626

27-
if (typeof value === "boolean") {
28-
return ["boolean"];
29-
}
30-
3127
return [String(value)];
3228
};

0 commit comments

Comments
 (0)