From 4c59a91651c8192175abfa113fca9ed55cf96fcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 16 Feb 2019 15:13:17 +0100 Subject: [PATCH] Also remove nested options prop that was there due to bug --- public/app/features/dashboard/state/DashboardMigrator.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/features/dashboard/state/DashboardMigrator.ts b/public/app/features/dashboard/state/DashboardMigrator.ts index f1ca944e6ab..1aa310308d5 100644 --- a/public/app/features/dashboard/state/DashboardMigrator.ts +++ b/public/app/features/dashboard/state/DashboardMigrator.ts @@ -399,6 +399,8 @@ export class DashboardMigrator { prefix: panel.options.prefix, suffix: panel.options.suffix, }; + // this options prop was due to a bug + delete panel.options.options; delete panel.options.unit; delete panel.options.stat; delete panel.options.decimals;