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 entering a blank value (null) in any of the input fields (e.g., Instagram, Twitter, Facebook, LinkedIn) and clicking the "Redraw Chart" button, the application throws a java.lang.NullPointerException. The input validation for empty fields is missing.
Additionally, the input fields accept invalid inputs such as only -or + (which are not numbers). Clicking the button causes the application to throw the same exception.
Steps to Reproduce
Navigate to the page googlecharts > types > ChartRedrawView.java
Delete the value in any input field (e.g., "Value for Instagram") so that it becomes blank.
Click the "Redraw Chart" button.
Observe the application behavior.
Expected Behavior
The application should validate the input fields and display an appropriate error message when the field is left blank. The application should not throw an exception.
The text was updated successfully, but these errors were encountered:
Description
When entering a blank value (null) in any of the input fields (e.g., Instagram, Twitter, Facebook, LinkedIn) and clicking the "Redraw Chart" button, the application throws a
java.lang.NullPointerException
. The input validation for empty fields is missing.Additionally, the input fields accept invalid inputs such as only
-
or+
(which are not numbers). Clicking the button causes the application to throw the same exception.Steps to Reproduce
googlecharts > types > ChartRedrawView.java
Expected Behavior
The application should validate the input fields and display an appropriate error message when the field is left blank. The application should not throw an exception.
The text was updated successfully, but these errors were encountered: