3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00

Build: Fix missing icon typing ()

This commit is contained in:
Brian Gann 2019-04-15 12:55:12 -05:00 committed by Torkel Ödegaard
parent 6724aaeff9
commit d23f50ab23
2 changed files with 1 additions and 2 deletions
packages/grafana-ui/src/types
public/app/types

View File

@ -56,7 +56,7 @@ export interface PluginInclude {
type: PluginIncludeType; type: PluginIncludeType;
name: string; name: string;
path?: string; path?: string;
icon?: string;
// Angular app pages // Angular app pages
component?: string; component?: string;
} }

View File

@ -24,7 +24,6 @@ export interface Plugin extends PluginMeta {
hasUpdate: boolean; hasUpdate: boolean;
latestVersion: string; latestVersion: string;
pinned: boolean; pinned: boolean;
icon?: string;
} }
export interface PluginDashboard { export interface PluginDashboard {