From 119c4befe12caeb011ecd0c90e6ef17e3eab4ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Thu, 14 Dec 2023 16:54:17 +0100 Subject: [PATCH] Disable drill down for radar charts --- .../web/compose/src/components/PageBlocks/ChartConfigurator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web/compose/src/components/PageBlocks/ChartConfigurator.vue b/client/web/compose/src/components/PageBlocks/ChartConfigurator.vue index cf7e630a4..ee45f0c8f 100644 --- a/client/web/compose/src/components/PageBlocks/ChartConfigurator.vue +++ b/client/web/compose/src/components/PageBlocks/ChartConfigurator.vue @@ -109,7 +109,7 @@ export default { const { metrics = [] } = (this.selectedChart.config.reports[0] || {}) - return !metrics.some(({ type }) => type === 'gauge') + return !metrics.some(({ type }) => type === 'gauge' || type === 'radar') }, drillDownOptions () {