Skip to content

Commit 44e96b1

Browse files
Update packages/core/src/components/widgets/CheckboxWidget.tsx
Co-authored-by: Heath C <[email protected]>
1 parent 3bb4c67 commit 44e96b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/components/widgets/CheckboxWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function CheckboxWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F exte
6464
const description = isCheckboxWidget ? undefined : (options.description ?? schema.description);
6565
return (
6666
<div className={`checkbox ${disabled || readonly ? 'disabled' : ''}`}>
67-
{!hideLabel && description && !isCheckboxWidget && (
67+
{!hideLabel && description && (
6868
<DescriptionFieldTemplate
6969
id={descriptionId(id)}
7070
description={description}

0 commit comments

Comments
 (0)