Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jcscottiii committed Feb 17, 2025
1 parent cbcc047 commit 4928689
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class WebstatusFeatureUsageChartPanel extends WebstatusLineChartPanel {
timestampExtractor: (dataPoint: ChromiumUsageStat): Date =>
new Date(dataPoint.timestamp),
valueExtractor: (dataPoint: ChromiumUsageStat): number =>
dataPoint.usage || 0,
dataPoint.usage ? dataPoint.usage * 100 : 0,
tooltipExtractor: (dataPoint: ChromiumUsageStat): string =>
`Chrome: ${dataPoint.usage ? dataPoint.usage * 100 : 0}%`,
},
Expand Down

0 comments on commit 4928689

Please sign in to comment.