chore: removing unused chartMetadata field (#25926)

This commit is contained in:
Evan Rusackas 2023-11-09 15:57:46 -07:00 committed by GitHub
parent 83b7fa92af
commit b6fb36f22b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -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) => {