Skip to content

Commit

Permalink
Updated task filter placeholder (AOT-Technologies#1800)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonymol-aot authored Dec 13, 2023
1 parent de6fc24 commit 18cca05
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ const TaskFilterListViewComponent = React.memo(
onChange={(e) => setAssignee(e.target.value)}
className="form-control"
>
<option value="">{t("Select a user")}</option>
<option value="" hidden>
{t("Select a user")}
</option>
{assigneeOptions.map((option) => (
<option key={option.value} value={option.value}>
{option.label}
Expand Down

0 comments on commit 18cca05

Please sign in to comment.