From fb82301e6f411a39b6910467afd7cccf3d5c7074 Mon Sep 17 00:00:00 2001 From: manorlh <44364426+manorlh@users.noreply.github.com> Date: Thu, 3 Sep 2020 14:28:25 +0300 Subject: [PATCH] fix(ui): fixing missing required lodash (#365) fix(ui): fixing missing required lodash (#365) --- ui/src/features/components/ConfigurationForm/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/features/components/ConfigurationForm/index.js b/ui/src/features/components/ConfigurationForm/index.js index fda234254..b1bd03082 100644 --- a/ui/src/features/components/ConfigurationForm/index.js +++ b/ui/src/features/components/ConfigurationForm/index.js @@ -22,6 +22,7 @@ import Snackbar from 'material-ui/Snackbar'; import UiSwitcher from '../../../components/UiSwitcher'; import {get, set, pickBy} from 'lodash'; import Dropdown from "../../../components/Dropdown/Dropdown.export"; +import _ from "lodash"; const INPUT_TYPES = {SWITCHER: 'switcher', DROPDOWN: 'dropdown'}; const isMetricsDropdownHidden = (state, type) => (state.config.metrics_plugin_name ? state.config.metrics_plugin_name !== type : state.serverConfig.metrics_plugin_name !== type)