Skip to content

Commit 5b4b5cf

Browse files
Fix 4696 by updating lodash import to be direct import (#4701)
- Fixes #4696 by updating the `lodash` import from `import { isEqual } from 'lodash';` to `import isEqual from 'lodash/isEqual';` - Updated the `CHANGELOG.md` accordingly
1 parent 26551ad commit 5b4b5cf

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ it according to semantic versioning. For example, if your PR adds a breaking cha
1515
should change the heading of the (upcoming) version to include a major version bump.
1616
1717
-->
18+
# 6.0.0-beta.13
19+
20+
## @rjsf/shadcn
21+
22+
- Updated `lodash` import in `fancy-multi-select.tsx` to to be direct import, fixing [#4696](https://github.com/rjsf-team/react-jsonschema-form/issues/4696)
1823

1924
# 6.0.0-beta.12
2025

packages/shadcn/src/components/ui/fancy-multi-select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
22

33
import { Command as CommandPrimitive } from 'cmdk';
4-
import { isEqual } from 'lodash';
4+
import isEqual from 'lodash/isEqual';
55
import { X } from 'lucide-react';
66
import {
77
FocusEvent,

0 commit comments

Comments
 (0)