Add option to show and hide the action bar in the query results view (#21560)

* Show and hide action bar in results view

* Updates show action bar setting description

* Removes excess padding

* Code review change
This commit is contained in:
Lewis Sanchez
2023-01-11 16:16:08 -08:00
committed by GitHub
parent 9708b470c7
commit 7683259097
3 changed files with 44 additions and 21 deletions

View File

@@ -442,6 +442,11 @@ const queryEditorConfiguration: IConfigurationNode = {
'description': localize('queryEditor.results.openAfterSave', "Whether to open the file in Azure Data Studio after the result is saved."),
'default': true
},
'queryEditor.results.showActionBar': {
'type': 'boolean',
'description': localize('queryEditor.results.showActionBar', "Whether to show the action bar in the query results view"),
'default': true
},
'queryEditor.messages.showBatchTime': {
'type': 'boolean',
'description': localize('queryEditor.messages.showBatchTime', "Should execution time be shown for individual batches"),