Skip to content

Commit b59b9a4

Browse files
committed
feat(lodash): update import chain function
1 parent b61cb31 commit b59b9a4

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

admin-ui/app/colors.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import chain from 'lodash/chain';
2-
import pick from 'lodash/pick';
1+
import { chain, pick } from 'lodash';
32

43
import colors from './colors.scss';
54

admin-ui/app/routes/Layouts/DragAndDropLayout/DragAndDropLayout.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import React from 'react';
22
import v4 from 'uuid/v4';
3-
import chain from 'lodash/chain';
4-
import random from 'lodash/random';
5-
import mapValues from 'lodash/mapValues';
3+
import {
4+
chain,
5+
random,
6+
mapValues
7+
} from 'lodash';
68

79
import {
810
Container,

0 commit comments

Comments
 (0)