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
Two `<label for="...">` attributes in the apiCalls params forms point at ids that don't exist on the inputs they're supposed to label, breaking screen-reader association and click-to-focus.
`transitclockWebapp/src/main/webapp/reports/apiCalls/predsByRouteStopApiParams.jsp` (lines 35–37) — `<label for="stop">` should be `for="stopId"`
`transitclockWebapp/src/main/webapp/reports/apiCalls/tripWithTravelTimesApiParams.jsp` (lines 27–28) — `<label for="trip">` should be `for="tripId"`
Two `<label for="...">` attributes in the apiCalls params forms point at ids that don't exist on the inputs they're supposed to label, breaking screen-reader association and click-to-focus.
Source