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
Element value cut by cursor position even if value is properly filled.
Check _onBlur function.
Fast fix:
this.mask.props.value = value.substr(0, cursor) -> this.mask.props.value = value.substr(0, value.length)
Element value cut by cursor position even if value is properly filled.
Check _onBlur function.
Fast fix:
this.mask.props.value = value.substr(0, cursor) -> this.mask.props.value = value.substr(0, value.length)