We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b61cb31 commit b59b9a4Copy full SHA for b59b9a4
admin-ui/app/colors.js
@@ -1,5 +1,4 @@
1
-import chain from 'lodash/chain';
2
-import pick from 'lodash/pick';
+import { chain, pick } from 'lodash';
3
4
import colors from './colors.scss';
5
admin-ui/app/routes/Layouts/DragAndDropLayout/DragAndDropLayout.js
@@ -1,8 +1,10 @@
import React from 'react';
import v4 from 'uuid/v4';
-import random from 'lodash/random';
-import mapValues from 'lodash/mapValues';
+import {
+ chain,
+ random,
6
+ mapValues
7
+} from 'lodash';
8
9
import {
10
Container,
0 commit comments