From bca61016095dea1dbcb71c0b4cd3a07acdcb4620 Mon Sep 17 00:00:00 2001 From: Travis Cline Date: Wed, 29 Jun 2016 11:03:07 -0700 Subject: [PATCH] properly quote font-family on singlestat --- public/app/plugins/panel/singlestat/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/singlestat/module.ts b/public/app/plugins/panel/singlestat/module.ts index 74f2d818710..380af96da54 100644 --- a/public/app/plugins/panel/singlestat/module.ts +++ b/public/app/plugins/panel/singlestat/module.ts @@ -409,7 +409,7 @@ class SingleStatCtrl extends MetricsPanelCtrl { value: { color: panel.colorValue ? getColorForValue(data, data.valueRounded) : null, formatter: function() { return getValueText(); }, - font: { size: fontSize, family: 'Helvetica Neue", Helvetica, Arial, sans-serif' } + font: { size: fontSize, family: '"Helvetica Neue", Helvetica, Arial, sans-serif' } }, show: true }