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
Review all components in./src/pages/Home.js and replace all standard HTML components with applicable MUI components.
Action Items
Review components in:./src/pages/Home.js and search for any standard HTML components.
IF standard HTML components are found in the file:
Replace these standard HTML components with applicable MUI components.
Ensure select field integrates changes from the Selection Field details below
Make a PR for this file
Selection Field
This component contains a selection field with selection options. Please reveiw MUI's Selection Component to ensure that "Select One" is displayed by default on page load.
As it currently stands, the old select style is adding a "-- Select One --" option, this behavior doesn't need to be transferred into the new componenet.
Code Snippet
<BoxclassName="form-input-select"><labelhtmlFor={'meeting-checkin'}>
Select a meeting to check-in:
</label><BoxclassName="radio-buttons"><selectname={'meeting-checkin'}className="select-meeting-dropdown"onChange={handleEventChange}requireddefaultValue="--SELECT ONE--"><optionvalue="--SELECT ONE--"disabledhidden>
--SELECT ONE--
</option>{events.map((event)=>{return(<optionkey={event._id||0}value={event._id}>{event?.project?.name+' - '+event.name}</option>);})}</select></Box></Box>
Overview
Review all components in
./src/pages/Home.js
and replace all standard HTML components with applicable MUI components.Action Items
./src/pages/Home.js
and search for any standard HTML components.Selection Field
details belowSelection Field
This component contains a selection field with selection options. Please reveiw MUI's Selection Component to ensure that "Select One" is displayed by default on page load.
As it currently stands, the old select style is adding a "-- Select One --" option, this behavior doesn't need to be transferred into the new componenet.
Code Snippet
Resources
The text was updated successfully, but these errors were encountered: