We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ff23b commit f155369Copy full SHA for f155369
src/Umbraco.Web.UI.Client/src/packages/core/components/input-number-range/input-number-range.element.ts
@@ -123,7 +123,7 @@ export class UmbInputNumberRangeElement extends UmbFormControlMixin(UmbLitElemen
123
label=${this.maxLabel}
124
min=${ifDefined(this.validationRange?.min)}
125
max=${ifDefined(this.validationRange?.max)}
126
- placeholder=${this.validationRange?.max === Infinity ? '∞' : (this.validationRange?.max ?? '')}
+ placeholder=${this.validationRange?.max ?? '∞'}
127
.value=${this._maxValue}
128
@input=${this.#onMaxInput}></uui-input>
129
`;
0 commit comments