Skip to content

Commit

Permalink
Reset default rate limits
Browse files Browse the repository at this point in the history
Fixes out of the box experience (since the default multiplier means we're still operating in pence, not pounds)
  • Loading branch information
lozzd authored Dec 1, 2023
1 parent 8b4605d commit ad94f2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions octopus-energy-rates-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,9 @@ class OctopusEnergyRatesCard extends HTMLElement {
// If the price is above lowlimit, the row is marked dark green.
// If the price is below lowlimit, the row is marked green.
// If the price is below 0, the row is marked blue.
lowlimit: 0.05,
mediumlimit: 0.10,
highlimit: 0.30,
lowlimit: 5,
mediumlimit: 20,
highlimit: 30,
// Controls the rounding of the units of the rate
roundUnits: 2,
// The unit string to show if units are shown after each rate
Expand Down

0 comments on commit ad94f2d

Please sign in to comment.