From 0c4a4d70f513c8b99b927e128d7785f1da64586b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Oberm=C3=BCller?= Date: Thu, 1 Feb 2024 12:08:10 +0100 Subject: [PATCH] fix(retention): do not set interval for retention as date range side effect (#20081) --- frontend/src/scenes/insights/insightVizDataLogic.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/scenes/insights/insightVizDataLogic.ts b/frontend/src/scenes/insights/insightVizDataLogic.ts index 448a287a7ada3..0b6f6b17c676b 100644 --- a/frontend/src/scenes/insights/insightVizDataLogic.ts +++ b/frontend/src/scenes/insights/insightVizDataLogic.ts @@ -425,6 +425,7 @@ const handleQuerySourceUpdateSideEffects = ( * Date range change side effects. */ if ( + !isRetentionQuery(currentState) && !isPathsQuery(currentState) && // TODO: Apply side logic more elegantly update.dateRange && update.dateRange.date_from &&