We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b68e23 commit 0d878b0Copy full SHA for 0d878b0
packages/main/src/SliderBase.js
@@ -249,7 +249,7 @@ class SliderBase extends UI5Element {
249
* @private
250
*/
251
_onmouseover(event) {
252
- if (!this.disabled || this.showTooltip) {
+ if (this.showTooltip) {
253
this._tooltipVisibility = "visible";
254
}
255
@@ -450,7 +450,7 @@ class SliderBase extends UI5Element {
450
451
452
// Recalculate the tickmarks and labels and update the stored state.
453
- if (this.isPropertyUpdated("min", "max", values)) {
+ if (this.isPropertyUpdated("min", "max", ...values)) {
454
this._normalizeMinMaxValues(this.min, this.max);
455
this._drawDefaultTickmarks(this.step, this.max, this.min);
456
this.storePropertyState("min", "max");
0 commit comments