Skip to content

Commit

Permalink
Fix prob with filterdrawer text inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Sep 12, 2024
1 parent 5a28e38 commit 601ddef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/src/components/Projects/FilterDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ const FilterPopup = ({
<h4 className={classes.minorHeading}>Project Name</h4>
<input
type="text"
name="name"
value={criteria.name}
onChange={e => handleChange(e, "name")}
className={classes.textInput}
Expand All @@ -161,6 +162,7 @@ const FilterPopup = ({
<h4 className={classes.minorHeading}>Address</h4>
<input
type="text"
name="address"
value={criteria.address}
onChange={e => handleChange(e, "address")}
className={classes.textInput}
Expand All @@ -170,6 +172,7 @@ const FilterPopup = ({
<h4 className={classes.minorHeading}>Author</h4>
<input
type="text"
name="author"
value={criteria.author}
onChange={e => handleChange(e, "author")}
className={classes.textInput}
Expand All @@ -180,6 +183,7 @@ const FilterPopup = ({
<h4 className={classes.minorHeading}>Alternative Number</h4>
<input
type="text"
name="alternative"
value={criteria.alternative}
onChange={e => handleChange(e, "alternative")}
className={classes.textInput}
Expand Down

0 comments on commit 601ddef

Please sign in to comment.