From cc375f48c786b17e6e1c0e510bf2695edf3d3af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 26 Jan 2016 11:34:58 -0500 Subject: [PATCH] feat(panels): minor fix --- public/app/plugins/panel/text/module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/plugins/panel/text/module.ts b/public/app/plugins/panel/text/module.ts index cb63362ff37..351abb7be7c 100644 --- a/public/app/plugins/panel/text/module.ts +++ b/public/app/plugins/panel/text/module.ts @@ -19,9 +19,11 @@ export class TextPanelCtrl extends PanelCtrl { _.defaults(this.panel, panelDefaults); this.render(); + } initEditorTabs() { + this.icon = 'fa fa-text-width'; this.addEditorTab('Options', () => { return { templateUrl: 'public/app/plugins/panel/text/editor.html' }; });