diff --git a/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx b/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx index 7db7546e4..e6f26b18b 100644 --- a/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx +++ b/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx @@ -123,7 +123,7 @@ export class AddCollectionPanel extends React.Component )} - {this.shouldShowCollectionThroughputInput() && ( + {this.shouldShowCollectionThroughputInput() && !isFabricNative() && ( { }; export const isVectorSearchEnabled = (): boolean => { - return userContext.apiType === "SQL" && isCapabilityEnabled(Constants.CapabilityNames.EnableNoSQLVectorSearch); + return ( + userContext.apiType === "SQL" && + (isCapabilityEnabled(Constants.CapabilityNames.EnableNoSQLVectorSearch) || isFabricNative()) + ); };