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
The fix for the app crashing when parsing invalid JSON revealed an issue whereby the JSON that was just parsed is removed from the form, but the form remains and empty.
Rather than clearing the form, we want to retain user input when JSON parsing fails.
The text was updated successfully, but these errors were encountered:
the text area should give an indication that the input is wrong. we can achieve this with ComponentStatus
when the user attempts to correct the invalid input, the text area should no longer indicate that the input is wrong, and the notification should be dismissed
Dismissing the notification automatically when the user changes invalid input might not be necessary or desirable. The notification has details which might be useful for the user to reference while editing. An accidental or incomplete edit would dismiss this potentially useful information.
As is, the notification will expire in 10 seconds. So, we'll go with that. The user can also manually dismiss the notification.
The fix for the app crashing when parsing invalid JSON revealed an issue whereby the JSON that was just parsed is removed from the form, but the form remains and empty.
Rather than clearing the form, we want to retain user input when JSON parsing fails.
The text was updated successfully, but these errors were encountered: