fix(loadash): moved to es format (#355)

This commit is contained in:
pal-sig 2021-11-17 16:30:45 +05:30 committed by GitHub
parent 43369bdefb
commit 148d7d99ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { InfoCircleOutlined } from "@ant-design/icons";
import { Select } from "antd";
import styled from "styled-components";
const { Option } = Select;
import { cloneDeep } from "lodash";
import { cloneDeep } from "lodash-es";
const Container = styled.div`
margin-top: 12px;

View File

@ -1,4 +1,4 @@
import { cloneDeep, find, maxBy, uniq, uniqBy } from 'lodash';
import { cloneDeep, find, maxBy, uniq, uniqBy } from 'lodash-es';
import { serviceMapStore } from 'store/actions';
import { graphDataType } from './ServiceMap';