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
Since NumberDisplay and NumberControl now support {{value}}, there are 4 replacements involving '{0}' that should be changed to NumberDisplay.NAMED_PLACEHOLDER:
In the future, such replacements could be avoided altogether by using '{{value}}' in the string file. For example:
// instead of this:
"metersPattern": {
"value": "{{meters}} m"
},
// use this:
"metersPattern": {
"value": "{{value}} m"
},
The text was updated successfully, but these errors were encountered:
Noted in phetsims/scenery-phet#446 (comment).
Since NumberDisplay and NumberControl now support
{{value}}
, there are 4 replacements involving'{0}'
that should be changed toNumberDisplay.NAMED_PLACEHOLDER
:In the future, such replacements could be avoided altogether by using '{{value}}' in the string file. For example:
The text was updated successfully, but these errors were encountered: