We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de58b2 commit aa945bdCopy full SHA for aa945bd
packages/compass-aggregations/src/components/stage-toolbar/stage-operator-select.tsx
@@ -103,9 +103,9 @@ export const StageOperatorSelect = ({
103
const enableAtlasSearchIndexes = usePreference('enableAtlasSearchIndexes');
104
// filter out search stages for data explorer
105
const filteredStages =
106
- isReadonlyView && enableAtlasSearchIndexes
107
- ? stages
108
- : stages.filter((stage) => !isSearchStage(stage.name));
+ isReadonlyView && !enableAtlasSearchIndexes
+ ? stages.filter((stage) => !isSearchStage(stage.name))
+ : stages;
109
110
const onStageOperatorSelected = useCallback(
111
(name: string | null) => {
0 commit comments