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
For a confidence slider the runtime error isn't immediately shown, but a missing _scaleStart (if using _linkedToId it will attempt to retrieve these values from the linked model) causes the input display to be out of sync with the value (presumably because it defaults to the default 0 min of <input type="range">. If _scaleEnd is missing the scale is displayed incorrectly and the following error occurs when interacting with the slider:
* Fix: added default attribute values for `_scaleStart`, `_scaleEnd` and `_scaleStep`. Changed `_scaleEnd` schema default from 1 to 10. (fixes#204).
* Removed `_scaleStep` fallbacks as these are no longer needed with a default model value.
* Restrict `_scaleStep` to a positive number, to prevent errors.
As there is no default value for
_scaleStart
and_scaleEnd
, the following error will occur if either are omitted from the JSON:For a confidence slider the runtime error isn't immediately shown, but a missing
_scaleStart
(if using_linkedToId
it will attempt to retrieve these values from the linked model) causes the input display to be out of sync with the value (presumably because it defaults to the default 0min
of<input type="range">
. If_scaleEnd
is missing the scale is displayed incorrectly and the following error occurs when interacting with the slider:The schema default for
_scaleEnd
should also be changed from 1.The text was updated successfully, but these errors were encountered: