Web: People: fixed drop down displaying in ContactField components

This commit is contained in:
Dmitry Sychugov 2021-10-12 20:25:32 +05:00
parent 9984780b85
commit 5ebf7509da
3 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,7 @@ export default function withContent(WrappedContent) {
isTextOverflow
containerMinWidth="120px"
containerWidth="15%"
directionY="both"
title={temp[0].label}
fontSize="12px"
fontWeight={400}

View File

@ -48,7 +48,9 @@ class ContactField extends React.Component {
selectedOption={comboBoxSelectedOption}
isDisabled={isDisabled}
scaled={true}
directionY="both"
className="field-select"
scaledOptions={true}
/>
<TextInput
name={inputName}

View File

@ -97,6 +97,7 @@ class ContactsField extends React.Component {
<ComboBox
options={options}
onSelect={onItemAdd}
scaledOptions={true}
selectedOption={{
key: prefix,
label: addItemText,
@ -106,6 +107,7 @@ class ContactsField extends React.Component {
isDisabled={isDisabled}
scaled={true}
className="field-select"
directionY="both"
/>
</Container>
);