From 21188bb739486126893ca7dc50bb7fe15b6631d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sun, 29 Mar 2020 07:16:42 +0200 Subject: [PATCH] StatPanel: Fixed duplicate option exception (#23168) --- public/app/plugins/panel/stat/module.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/public/app/plugins/panel/stat/module.tsx b/public/app/plugins/panel/stat/module.tsx index a30bfd406f2..e6eb90f0cc3 100644 --- a/public/app/plugins/panel/stat/module.tsx +++ b/public/app/plugins/panel/stat/module.tsx @@ -12,18 +12,6 @@ export const plugin = new PanelPlugin(StatPanel) addStandardDataReduceOptions(builder); builder - .addRadio({ - id: 'orientation', - name: 'Orientation', - description: 'Stacking direction for multiple bars', - settings: { - options: [ - { value: 'auto', label: 'Auto' }, - { value: 'horizontal', label: 'Horizontal' }, - { value: 'vertical', label: 'Vertical' }, - ], - }, - }) .addRadio({ id: 'colorMode', name: 'Color mode',