Skip to content

Commit

Permalink
Don't show bias adjustments for precip and winddir
Browse files Browse the repository at this point in the history
  • Loading branch information
conbrad committed Aug 15, 2023
1 parent ebdd3bf commit 7503066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/features/moreCast2/components/MoreCast2Column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class WindDirForecastField implements ColDefGenerator, ForecastColDefGene
}

public generateColDefs = (headerName?: string) => {
return this.colDefBuilder.generateColDefs(headerName, true)
return this.colDefBuilder.generateColDefs(headerName, false)
}

public static getInstance(): WindDirForecastField {
Expand Down Expand Up @@ -259,7 +259,7 @@ export class PrecipForecastField implements ColDefGenerator, ForecastColDefGener
}

public generateColDefs = (headerName?: string) => {
return this.colDefBuilder.generateColDefs(headerName, true)
return this.colDefBuilder.generateColDefs(headerName, false)
}

public static getInstance(): PrecipForecastField {
Expand Down

0 comments on commit 7503066

Please sign in to comment.