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
We have a form with multiple react input fields, on selection of the input field we show a edit form where user can modify the value. once input is received the value on the main form is immediately updated
The issue happens in two cases
when an input is provided with initial country set as canada ,country changes to us the the first character which was entered is not shows
when trying to update the country the using the country value , the whole value is reset
For eg: main form country was set as usa, then from the edit form when input was provided as 226 which is the area code for canada ,the country changes to canada but the input field becomes empty
Object before update:
['{"dialCode":"+1","type":"Mobile","value":null,"countryCode":"us"}']
Object after update:
We have a form with multiple react input fields, on selection of the input field we show a edit form where user can modify the value. once input is received the value on the main form is immediately updated
The issue happens in two cases
when an input is provided with initial country set as canada ,country changes to us the the first character which was entered is not shows
when trying to update the country the using the country value , the whole value is reset
For eg: main form country was set as usa, then from the edit form when input was provided as 226 which is the area code for canada ,the country changes to canada but the input field becomes empty
Object before update:
['{"dialCode":"+1","type":"Mobile","value":null,"countryCode":"us"}']
Object after update:
['{"dialCode":"+1","type":"Mobile","value":"+1 (226)","countryCode":"ca"}']
Please provide a fix this issue at the earliest
The text was updated successfully, but these errors were encountered: