chore: removing unused chartMetadata field (#25926)
This commit is contained in:
parent
83b7fa92af
commit
b6fb36f22b
|
|
@ -36,7 +36,6 @@ export interface ChartMetadataConfig {
|
|||
description?: string;
|
||||
datasourceCount?: number;
|
||||
enableNoResults?: boolean;
|
||||
show?: boolean;
|
||||
supportedAnnotationTypes?: string[];
|
||||
thumbnail: string;
|
||||
useLegacyApi?: boolean;
|
||||
|
|
@ -64,8 +63,6 @@ export default class ChartMetadata {
|
|||
|
||||
description: string;
|
||||
|
||||
show: boolean;
|
||||
|
||||
supportedAnnotationTypes: string[];
|
||||
|
||||
thumbnail: string;
|
||||
|
|
@ -100,7 +97,6 @@ export default class ChartMetadata {
|
|||
canBeAnnotationTypes = [],
|
||||
credits = [],
|
||||
description = '',
|
||||
show = true,
|
||||
supportedAnnotationTypes = [],
|
||||
thumbnail,
|
||||
useLegacyApi = false,
|
||||
|
|
@ -120,7 +116,6 @@ export default class ChartMetadata {
|
|||
this.name = name;
|
||||
this.credits = credits;
|
||||
this.description = description;
|
||||
this.show = show;
|
||||
this.canBeAnnotationTypes = canBeAnnotationTypes;
|
||||
this.canBeAnnotationTypesLookup = canBeAnnotationTypes.reduce(
|
||||
(prev: LookupTable, type: string) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue