From 148d7d99edb45bd0c82e2cec9cefeb53aa113d26 Mon Sep 17 00:00:00 2001 From: pal-sig <88981777+pal-sig@users.noreply.github.com> Date: Wed, 17 Nov 2021 16:30:45 +0530 Subject: [PATCH] fix(loadash): moved to es format (#355) --- frontend/src/modules/Servicemap/SelectService.tsx | 2 +- frontend/src/modules/Servicemap/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/modules/Servicemap/SelectService.tsx b/frontend/src/modules/Servicemap/SelectService.tsx index 1b5993d897..d15c542e4d 100644 --- a/frontend/src/modules/Servicemap/SelectService.tsx +++ b/frontend/src/modules/Servicemap/SelectService.tsx @@ -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; diff --git a/frontend/src/modules/Servicemap/utils.ts b/frontend/src/modules/Servicemap/utils.ts index b6219fa0b9..54195a3059 100644 --- a/frontend/src/modules/Servicemap/utils.ts +++ b/frontend/src/modules/Servicemap/utils.ts @@ -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';