Skip to content

Commit 33ef32e

Browse files
- Restored space in classNames that was accidentally removed
1 parent aec6dce commit 33ef32e

File tree

6 files changed

+437
-436
lines changed

6 files changed

+437
-436
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ should change the heading of the (upcoming) version to include a major version b
8585

8686
- Added new `enableMarkdownInHelp` to the `GlobalUISchemaOptions` type, fixing [#4601](https://github.com/rjsf-team/react-jsonschema-form/issues/4601)
8787
- Added new `displayLabel` and `hasDescription` flags in the `ArrayFieldItemTemplateProps` to support fixing [#3296](https://github.com/rjsf-team/react-jsonschema-form/issues/3296)
88+
- Updated the three hooks to add `use client` directive to support NextJS builds
8889

8990
## Dev / docs / playground
9091

packages/daisyui/src/templates/FieldTemplate/FieldTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default function FieldTemplate<
7777
uiSchema={uiSchema}
7878
registry={registry}
7979
>
80-
<div className={`field-template mb-3${classNames || ''}`} {...divProps}>
80+
<div className={`field-template mb-3 ${classNames || ''}`} {...divProps}>
8181
{displayLabel && !isCheckbox && (
8282
<label htmlFor={id} className='label'>
8383
<span className='label-text font-medium'>

0 commit comments

Comments
 (0)