Skip to content

Commit

Permalink
chore: removing unused chartMetadata field (#25926)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas authored Nov 9, 2023
1 parent 83b7fa9 commit b6fb36f
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export interface ChartMetadataConfig {
description?: string;
datasourceCount?: number;
enableNoResults?: boolean;
show?: boolean;
supportedAnnotationTypes?: string[];
thumbnail: string;
useLegacyApi?: boolean;
Expand Down Expand Up @@ -64,8 +63,6 @@ export default class ChartMetadata {

description: string;

show: boolean;

supportedAnnotationTypes: string[];

thumbnail: string;
Expand Down Expand Up @@ -100,7 +97,6 @@ export default class ChartMetadata {
canBeAnnotationTypes = [],
credits = [],
description = '',
show = true,
supportedAnnotationTypes = [],
thumbnail,
useLegacyApi = false,
Expand All @@ -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) => {
Expand Down

0 comments on commit b6fb36f

Please sign in to comment.