Fixed an issue where the CSV file would not download if the CSV quote character length exceeded 1. #5505

This commit is contained in:
Pravesh Sharma
2022-11-28 13:49:22 +05:30
committed by GitHub
parent f828951fc4
commit a954f22fe8
2 changed files with 4 additions and 1 deletions

View File

@@ -919,7 +919,8 @@ export const InputSelect = forwardRef(({
Option: CustomSelectOption,
SingleValue: CustomSelectSingleValue,
IndicatorSeparator: (props) => controlProps.noDropdown ? null: <RSComponents.IndicatorSeparator {...props} />,
DropdownIndicator: (props) => controlProps.noDropdown ? null: <RSComponents.DropdownIndicator {...props} />
DropdownIndicator: (props) => controlProps.noDropdown ? null: <RSComponents.DropdownIndicator {...props} />,
Input: props => <RSComponents.Input {...props} maxLength={controlProps.maxLength} />
},
isMulti: Boolean(controlProps.multiple),
openMenuOnClick: !readonly,