Remove checkbox as boolean value

Summary:
Remove checkbox as we currently don't support editing values.

Instead replace with a simple 'TRUE', 'FALSE' text.

Reviewed By: antonk52

Differential Revision: D41532898

fbshipit-source-id: d4af37e30eb21ab761c39cb4ae45337247c80c9d
This commit is contained in:
Lorenzo Blasa
2022-11-25 08:14:08 -08:00
committed by Facebook GitHub Bot
parent ea0af7c931
commit 3044ddc5c1
2 changed files with 10 additions and 2 deletions

View File

@@ -55,6 +55,12 @@ export const NumberAttributeValueStyle = {
display: 'flex',
} as const;
export const BooleanAttributeValueStyle = {
color: theme.semanticColors.booleanValue,
fontSize: theme.fontSize.small,
alignItems: 'center',
} as const;
export const TextAttributeValueStyle = {
color: theme.semanticColors.stringValue,
display: 'flex',