From e8a43c40c14a1d591b51c6b7c59386beef9b3afa Mon Sep 17 00:00:00 2001 From: Vincent Fiduccia Date: Fri, 18 Jun 2021 13:05:55 -0700 Subject: [PATCH] Don't import all of lodash --- detail/autoscaling.horizontalpodautoscaler/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/detail/autoscaling.horizontalpodautoscaler/index.vue b/detail/autoscaling.horizontalpodautoscaler/index.vue index e68fcddb83..c0cdabc1fa 100644 --- a/detail/autoscaling.horizontalpodautoscaler/index.vue +++ b/detail/autoscaling.horizontalpodautoscaler/index.vue @@ -3,7 +3,9 @@ import CreateEditView from '@/mixins/create-edit-view'; import ResourceTabs from '@/components/form/ResourceTabs'; import Tab from '@/components/Tabbed/Tab'; import InfoBox from '@/components/InfoBox'; -import { camelCase, keys, startCase } from 'lodash'; +import camelCase from 'lodash/camelCase'; +import keys from 'lodash/keys'; +import startCase from 'lodash/startCase'; import { findBy } from '@/utils/array'; import { get } from '@/utils/object';