Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/material/slider/slider-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ export class MatSliderThumb implements _MatSliderThumb, OnDestroy, ControlValueA
// handles arrowing and updating the value when
// a step is defined.
if (this._slider.step || !this._isActive) {
this._updateThumbUIByValue({withAnimation: true});
this._updateThumbUIByValue({withAnimation: !this._isActive});
}
this._slider._onValueChange(this);
}
Expand Down Expand Up @@ -617,8 +617,7 @@ export class MatSliderRangeThumb extends MatSliderThumb implements _MatSliderRan
getSibling(): _MatSliderRangeThumb | undefined {
if (!this._sibling) {
this._sibling = this._slider._getInput(this._isEndThumb ? _MatThumb.START : _MatThumb.END) as
| MatSliderRangeThumb
| undefined;
MatSliderRangeThumb | undefined;
}
return this._sibling;
}
Expand Down
Loading