From e9792f6079451d5a5ad062e5a63967045af15ed2 Mon Sep 17 00:00:00 2001 From: Timur Olzhabayev Date: Mon, 24 Oct 2022 16:53:40 +0200 Subject: [PATCH] Updating app template to use compatible icon (#110) --- packages/create-plugin/templates/app/src/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-plugin/templates/app/src/module.ts b/packages/create-plugin/templates/app/src/module.ts index f58d46f58..656e89d51 100644 --- a/packages/create-plugin/templates/app/src/module.ts +++ b/packages/create-plugin/templates/app/src/module.ts @@ -4,7 +4,7 @@ import { AppConfig } from './components/AppConfig'; export const plugin = new AppPlugin<{}>().setRootPage(App).addConfigPage({ title: 'Configuration', - icon: 'fa fa-cog', + icon: 'cog', // @ts-ignore - Would expect a Class component, however works absolutely fine with a functional one // Implementation: https://github.com/grafana/grafana/blob/fd44c01675e54973370969dfb9e78f173aff7910/public/app/features/plugins/PluginPage.tsx#L157 body: AppConfig,