diff --git a/client/app/components/EditParameterSettingsDialog.jsx b/client/app/components/EditParameterSettingsDialog.jsx index a206c1fc7d..f182bb9d1e 100644 --- a/client/app/components/EditParameterSettingsDialog.jsx +++ b/client/app/components/EditParameterSettingsDialog.jsx @@ -12,6 +12,7 @@ import { wrap as wrapDialog, DialogPropType } from "@/components/DialogWrapper"; import QuerySelector from "@/components/QuerySelector"; import { Query } from "@/services/query"; import { useUniqueId } from "@/lib/hooks/useUniqueId"; +import "./EditParameterSettingsDialog.less"; const { Option } = Select; const formItemProps = { labelCol: { span: 6 }, wrapperCol: { span: 16 } }; @@ -26,7 +27,7 @@ function isTypeDateRange(type) { function joinExampleList(multiValuesOptions) { const { prefix, suffix } = multiValuesOptions; - return ["value1", "value2", "value3"].map(value => `${prefix}${value}${suffix}`).join(","); + return ["value1", "value2", "value3"].map((value) => `${prefix}${value}${suffix}`).join(","); } function NameInput({ name, type, onChange, existingNames, setValidation }) { @@ -54,7 +55,7 @@ function NameInput({ name, type, onChange, existingNames, setValidation }) { return (