Hide buttons for Fabric or when no write access (#1742)

This commit is contained in:
Laurent Nguyen
2024-02-09 14:10:57 +00:00
committed by GitHub
parent f8cfc6c21c
commit f403b086ad
4 changed files with 9 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ export function createStaticCommandBarButtons(
buttons.push(newSqlQueryBtn);
}
if (isQuerySupported && selectedNodeState.findSelectedCollection()) {
if (isQuerySupported && selectedNodeState.findSelectedCollection() && configContext.platform !== Platform.Fabric) {
const openQueryBtn = createOpenQueryButton(container);
openQueryBtn.children = [createOpenQueryButton(container), createOpenQueryFromDiskButton()];
buttons.push(openQueryBtn);