Remove SQLCMD button from preview (#24224)

This commit is contained in:
Erin Stellato
2023-08-25 18:09:50 -04:00
committed by GitHub
parent 51ce7345eb
commit d3b84a3646

View File

@@ -337,11 +337,11 @@ export class QueryEditor extends EditorPane {
{ element: Taskbar.createTaskbarSeparator() },
{ action: this._estimatedQueryPlanAction },
{ action: this._toggleActualExecutionPlanMode },
{ action: this._parseQueryAction }
{ action: this._parseQueryAction },
{ action: this._toggleSqlcmdMode }
);
if (previewFeaturesEnabled) {
content.push(
{ action: this._toggleSqlcmdMode },
{ action: this._exportAsNotebookAction }
);
}