From ee2f91571e5deef2c74c76fa86e3836905ef73b3 Mon Sep 17 00:00:00 2001 From: MuhammadUmer44 Date: Fri, 20 Sep 2024 23:09:37 +0500 Subject: [PATCH] fix(blue-print): number attribute type display full --- .../Body/Editor/CustomAttributesStep/FormInput/index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/ModalsContainer/BlueprintModal/Body/Editor/CustomAttributesStep/FormInput/index.tsx b/src/components/ModalsContainer/BlueprintModal/Body/Editor/CustomAttributesStep/FormInput/index.tsx index d0fd98ceb..770a07109 100644 --- a/src/components/ModalsContainer/BlueprintModal/Body/Editor/CustomAttributesStep/FormInput/index.tsx +++ b/src/components/ModalsContainer/BlueprintModal/Body/Editor/CustomAttributesStep/FormInput/index.tsx @@ -108,7 +108,7 @@ export const FormInput = ({ /> - setValue(`attributes[${index}].type`, val?.value)} @@ -165,3 +165,9 @@ const InputsWrapper = styled(Flex)` width: calc(100% + 20px); max-height: calc(80vh - 300px); ` + +const StyledAutoComplete = styled(AutoComplete)` + & .MuiInput-input.MuiInputBase-input { + padding: 8px 2px !important; + } +`