Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MGJamJam committed May 2, 2024
1 parent 737bdd0 commit 0865467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export enum QUERY_AD_ATTRIBUTES {

export type QueryAdAttribute = keyof typeof QUERY_AD_ATTRIBUTES;

export const SELECTABLE_QUERY_AD_ATTRIBUTES: SelectableValue<QueryAdAttribute>[] = [
export const SELECTABLE_QUERY_AD_ATTRIBUTES: Array<SelectableValue<QueryAdAttribute>> = [
{ value: QUERY_AD_ATTRIBUTES.ADVERTISER_NAME, label: 'Advertiser Name' },
{ value: QUERY_AD_ATTRIBUTES.AD_CLICKTHROUGH_URL, label: 'Ad Clickthrough Url' },
{ value: QUERY_AD_ATTRIBUTES.AD_DESCRIPTION, label: 'Ad Description' },
Expand Down
2 changes: 1 addition & 1 deletion bitmovin-analytics-datasource/src/types/queryAttributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export enum QUERY_ATTRIBUTES {

export type QueryAttribute = keyof typeof QUERY_ATTRIBUTES;

export const SELECTABLE_QUERY_ATTRIBUTES: SelectableValue<QueryAttribute>[] = [
export const SELECTABLE_QUERY_ATTRIBUTES: Array<SelectableValue<QueryAttribute>> = [
{ value: QUERY_ATTRIBUTES.AD, label: 'Ad' },
{ value: QUERY_ATTRIBUTES.ANALYTICS_VERSION, label: 'Analytics Software Version' },
{ value: QUERY_ATTRIBUTES.AUDIO_BITRATE, label: 'Audio Bitrate' },
Expand Down

0 comments on commit 0865467

Please sign in to comment.