From ed98c9311779f66f0704a3e6973db54be0633102 Mon Sep 17 00:00:00 2001 From: Basit Date: Mon, 23 May 2022 13:53:38 +0200 Subject: [PATCH] fix(explain-aggregation): maxTimeMS optional prop --- .../compass-aggregations/src/components/pipeline/pipeline.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/compass-aggregations/src/components/pipeline/pipeline.jsx b/packages/compass-aggregations/src/components/pipeline/pipeline.jsx index 1ba26045557..54bde36d9c7 100644 --- a/packages/compass-aggregations/src/components/pipeline/pipeline.jsx +++ b/packages/compass-aggregations/src/components/pipeline/pipeline.jsx @@ -101,7 +101,7 @@ class Pipeline extends PureComponent { setSettingsLimit: PropTypes.func.isRequired, limit: PropTypes.number.isRequired, largeLimit: PropTypes.number.isRequired, - maxTimeMS: PropTypes.number.isRequired, + maxTimeMS: PropTypes.number, applySettings: PropTypes.func.isRequired, isFullscreenOn: PropTypes.bool.isRequired, toggleFullscreen: PropTypes.func.isRequired,