Skip to content

Commit

Permalink
Add id to SortedBy select
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaiusDR committed May 29, 2024
1 parent d692acd commit 781b303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open-social-front-v2/components/filters/SortedSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const SortedSelect = (props) => {
<label className="label">
<span>Sorted By</span>
</label>
<select className="select select-bordered w-full max-w-xs" onChange={props.onSelect} >
<select id="sortedBy" className="select select-bordered w-full max-w-xs" onChange={props.onSelect} >
{props.sortedByOptions.map(option =>
<option key={option.value} label={option.label} value={option.value} />
)}
Expand Down

0 comments on commit 781b303

Please sign in to comment.