{!withoutLabel && (
@@ -361,7 +373,8 @@ const FieldV1 = ({
populators?.wrapLabel ? "wraplabel" : ""
}`}
>
-
+
{required ? " * " : null}
{infoMessage ? (
diff --git a/react/ui-components/src/molecules/CustomDropdown.js b/react/ui-components/src/molecules/CustomDropdown.js
index dabd67f7f9..3747ad1cee 100644
--- a/react/ui-components/src/molecules/CustomDropdown.js
+++ b/react/ui-components/src/molecules/CustomDropdown.js
@@ -7,7 +7,7 @@ import Dropdown from "../atoms/Dropdown";
import Toggle from "../atoms/Toggle";
import { createFunction } from "./techMolecules/createFunction";
-const CustomDropdown = ({ t, config, inputRef, label, onChange, value, errorStyle, disabled, type, additionalWrapperClass = "",variant,mdmsv2}) => {
+const CustomDropdown = ({ t, config, inputRef, label, onChange,id, value, errorStyle, disabled, type, additionalWrapperClass = "",variant,mdmsv2}) => {
const master = { name: config?.mdmsConfig?.masterName };
if (config?.mdmsConfig?.filter) {
master["filter"] = config?.mdmsConfig?.filter;
@@ -43,6 +43,7 @@ const CustomDropdown = ({ t, config, inputRef, label, onChange, value, errorStyl
onSelect={(e) => {
onChange(e, config.name);
}}
+ id={id}
disabled={disabled}
selectedOption={value}
defaultValue={value}
@@ -64,6 +65,7 @@ const CustomDropdown = ({ t, config, inputRef, label, onChange, value, errorStyl
key={config.name}
optionKey={config?.optionsKey}
value={value}
+ id={id}
select={(e) => {
onChange(e, config.name);
}}
@@ -86,6 +88,7 @@ const CustomDropdown = ({ t, config, inputRef, label, onChange, value, errorStyl
key={config.name}
optionsKey={config?.optionsKey}
value={value}
+ id={id}
onSelect={(e) => {
onChange(e, config.name);
}}
diff --git a/react/ui-components/src/utils/index.js b/react/ui-components/src/utils/index.js
index 8b13789179..e69de29bb2 100644
--- a/react/ui-components/src/utils/index.js
+++ b/react/ui-components/src/utils/index.js
@@ -1 +0,0 @@
-
diff --git a/react/ui-components/src/utils/inputAmountWrapper.js b/react/ui-components/src/utils/inputAmountWrapper.js
index e28f343dcb..9d70f656a7 100644
--- a/react/ui-components/src/utils/inputAmountWrapper.js
+++ b/react/ui-components/src/utils/inputAmountWrapper.js
@@ -50,7 +50,7 @@ export const InputAmountWrapper = ({ ref, ...props }) => {
return (