You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(material/slider): unable to assign min/max values if they are more precise than then step (#21155)
We have some logic that trims the value to the same number of decimals as the `step`,
in order to avoid assigning long decimal values. The problem is that if the `min` or `max`
are more precise than the `step`, we round up just above the `min` or below the `max`,
preventing the user from reaching the end values.
These changes add an exception to the rounding for the `min` and `max` values.
Fixes#21147.
(cherry picked from commit e95edad)
0 commit comments