Skip to content

Commit

Permalink
fix: start log y scale at 1
Browse files Browse the repository at this point in the history
  • Loading branch information
insmac committed Jan 16, 2025
1 parent af959cf commit 9040a0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const useGraphOptions = ({
distr: widgetConfig.distribution,
range: (u, min, max) => {
return [
u.data[0].length > 1 && min !== max
u.data[0].length > 1 && widgetConfig.distribution !== 3 && min !== max
? min
: widgetConfig.distribution !== 3
? 0
Expand Down

0 comments on commit 9040a0d

Please sign in to comment.