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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,

View File

@ -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
}
)