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:
parent
f828951fc4
commit
a954f22fe8
@ -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,
|
||||
|
@ -197,6 +197,7 @@ def register_query_tool_preferences(self):
|
||||
'allowClear': False,
|
||||
'tags': False,
|
||||
'creatable': True,
|
||||
'maxLength': 1
|
||||
}
|
||||
)
|
||||
|
||||
@ -212,6 +213,7 @@ def register_query_tool_preferences(self):
|
||||
'allowClear': False,
|
||||
'tags': False,
|
||||
'creatable': True,
|
||||
'maxLength': 1
|
||||
}
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user