mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the CSV file would not download if the CSV quote character length exceeded 1. #5505
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user