mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that users can use custom characters as CSV field separators/CSV quotes when downloading query results. #5066
This commit is contained in:
@@ -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,
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user