Skip to content

Commit

Permalink
fix: remove unused argument from getBoundary (#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildar170975 authored Jan 2, 2025
1 parent 54d9875 commit f5261d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -820,8 +820,8 @@ class MiniGraphCard extends LitElement {

getBoundaries(series, min, max, fallback, minRange) {
let boundary = [
this.getBoundary('min', series, min, fallback[0], minRange),
this.getBoundary('max', series, max, fallback[1], minRange),
this.getBoundary('min', series, min, fallback[0]),
this.getBoundary('max', series, max, fallback[1]),
];

if (minRange) {
Expand Down

0 comments on commit f5261d9

Please sign in to comment.