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
When the oldValue is set, the string concatenation is used, that will automatically convert the right side value to string. It is probably not what was intended, as null will be converted to 'null' and undefined to 'undefined'.
this.oldValue=''+value;
This convertion may lead to strange side effects, when the input was reset or is not yet dirty.
The text was updated successfully, but these errors were encountered:
When the
oldValue
is set, the string concatenation is used, that will automatically convert the right side value to string. It is probably not what was intended, asnull
will be converted to'null'
andundefined
to'undefined'
.This convertion may lead to strange side effects, when the input was reset or is not yet dirty.
The text was updated successfully, but these errors were encountered: