Skip to content

Commit fab6591

Browse files
committed
fix: fix lodash bundling
1 parent 5eb7644 commit fab6591

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/form-js-viewer/src/render/components/form-fields/ExpressionField.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useCallback, useEffect } from 'preact/hooks';
22
import { useExpressionEvaluation, useDeepCompareMemoize, useService } from '../../hooks';
33

4-
import { isEqual } from 'lodash';
4+
import isEqual from 'lodash/isEqual';
55

66
const type = 'expression';
77

packages/form-js-viewer/test/spec/Form.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { spy } from 'sinon';
77

88
import { CustomFormFieldsModule } from './custom';
99

10-
import { range } from 'lodash';
10+
import range from 'lodash/range';
1111

1212
import conditionSchema from './condition.json';
1313
import conditionErrorsSchema from './condition-errors.json';

0 commit comments

Comments
 (0)