Skip to content

Commit aa1ae4f

Browse files
authored
Fix numeric inputs not using precision when viewing multiple values (#85)
1 parent 828c1cc commit aa1ae4f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playcanvas/pcui",
3-
"version": "1.1.12",
3+
"version": "1.1.13",
44
"author": "PlayCanvas <[email protected]>",
55
"homepage": "https://playcanvas.github.io/pcui",
66
"description": "This library enables the creation of reliable and visually pleasing user interfaces by providing fully styled components that you can use directly on your site. The components are useful in a wide range of use cases, from creating simple forms to building graphical user interfaces for complex web tools.",

src/components/NumericInput/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ class NumericInput extends TextInput {
271271
this._sliderControl.class.add(CLASS_NUMERIC_INPUT_SLIDER_CONTROL_HIDDEN);
272272
}
273273
} else {
274-
this._updateValue(values[0]);
274+
this._updateValue(value);
275275
if (this._sliderControl) {
276276
this._sliderControl.class.remove(CLASS_NUMERIC_INPUT_SLIDER_CONTROL_HIDDEN);
277277
}

0 commit comments

Comments
 (0)