nswalters / AppTrakz-Client

React Client for AppTrakz application for documenting the job application process.
0 stars 0 forks source link

Added fixes for various console errors #83

Closed nswalters closed 3 years ago

nswalters commented 3 years ago
  1. Fixed issue where submitting an updated application record without changing the is_active state was causing a NOT NULL integrity error because we were trying to parseInt a string which didn't have an integer. It now checks first if the value is either "0" or "1" and then it will parseInt that.
  2. Fixed error where application status reason was, at some point during the render process, a null value. Defaulted to the configured value or an empty string.
  3. Fixed various HTML attribute naming issues such as making sure to use className= instead of class=.
  4. Added checks to verify the a job exists in state before attempting to create a link component.
  5. Added appropriate key attribute to list item in the job details application timeline.
  6. Changed a tags to Link components when linking to an internal resource.
  7. Added overflow scroll to the job contact details view to support when the pane become longer than the screen height.
  8. Updated navbar to properly highlight the current selected view based on path
  9. Added the Contacts option to the collapsed navbar which was missing before.