diff --git a/src/Explorer/Panes/AddCollectionPanel.tsx b/src/Explorer/Panes/AddCollectionPanel.tsx index 39d7ad2c8..3f3cab9e4 100644 --- a/src/Explorer/Panes/AddCollectionPanel.tsx +++ b/src/Explorer/Panes/AddCollectionPanel.tsx @@ -550,6 +550,72 @@ export class AddCollectionPanel extends React.Component )} + {this.shouldShowAnalyticalStoreOptions() && ( + + + + Analytical store + + + + + + + + + On + + + Off + + + {!this.isSynapseLinkEnabled() && ( + + + Azure Synapse Link is required for creating an analytical store{" "} + {getCollectionName().toLocaleLowerCase()}. Enable Synapse Link for this Cosmos DB account.{" "} + + Learn more + + + this.props.explorer.openEnableSynapseLinkDialog()} + style={{ height: 27, width: 80 }} + styles={{ label: { fontSize: 12 } }} + /> + + )} + + )} + {userContext.apiType !== "Tables" && ( )} - - {this.shouldShowAnalyticalStoreOptions() && ( - - - - Analytical store - - - - - - - - - On - - - Off - - - {!this.isSynapseLinkEnabled() && ( - - - Azure Synapse Link is required for creating an analytical store{" "} - {getCollectionName().toLocaleLowerCase()}. Enable Synapse Link for this Cosmos DB account.{" "} - - Learn more - - - this.props.explorer.openEnableSynapseLinkDialog()} - style={{ height: 27, width: 80 }} - styles={{ label: { fontSize: 12 } }} - /> - - )} - - )} )}