Ensure that users can use custom characters as CSV field separators/CSV quotes when downloading query results. #5066

This commit is contained in:
Nikhil Mohite
2022-10-20 16:28:42 +05:30
committed by GitHub
parent 4925c6ce50
commit abfc30db8b
2 changed files with 11 additions and 3 deletions

View File

@@ -195,7 +195,8 @@ def register_query_tool_preferences(self):
{'label': '\'', 'value': '\''}],
control_props={
'allowClear': False,
'tags': False
'tags': False,
'creatable': True,
}
)
@@ -209,7 +210,8 @@ def register_query_tool_preferences(self):
{'label': gettext('Tab'), 'value': '\t'}],
control_props={
'allowClear': False,
'tags': False
'tags': False,
'creatable': True,
}
)