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
{{ message }}
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
There should not be any duplicate IDs on any of the component templates.
Actual/Current Behavior
Some components that are being displayed multiple times on a page are using ids on the elements that are not unique. While some browsers will display the page correctly, this can cause unpredictable behavior and may cause incorrect rendering on certain browsers.
A good example of a page that currently has duplicate IDs is the login page. This page contains a "Login" and "Create Account" button. Because these are a reusable component with a static ID set, the IDs are identical.
Steps to Reproduce the Problem
Navigate to login page.
Inspect submit buttons.
IDs will be identical for both buttons.
Proposed Fix
Replace all ids with a class. The styles will need to be updated to target the class instead of an id.
The text was updated successfully, but these errors were encountered:
Expected Behavior
There should not be any duplicate IDs on any of the component templates.
Actual/Current Behavior
Some components that are being displayed multiple times on a page are using ids on the elements that are not unique. While some browsers will display the page correctly, this can cause unpredictable behavior and may cause incorrect rendering on certain browsers.
A good example of a page that currently has duplicate IDs is the login page. This page contains a "Login" and "Create Account" button. Because these are a reusable component with a static ID set, the IDs are identical.
Steps to Reproduce the Problem
Proposed Fix
Replace all ids with a class. The styles will need to be updated to target the class instead of an id.
The text was updated successfully, but these errors were encountered: