Skip to content

Commit

Permalink
fix placeholder text in the search input box
Browse files Browse the repository at this point in the history
  • Loading branch information
roslynwythe committed Sep 25, 2024
1 parent 0e752ff commit 0dc5246
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Projects/ProjectsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const useStyles = createUseStyles({
},
searchBar: {
maxWidth: "100%",
width: "25em",
width: "27em",
padding: "12px 12px 12px 48px",
marginRight: "0.5rem"
},
Expand Down Expand Up @@ -739,7 +739,7 @@ const ProjectsPage = ({ contentContainerRef }) => {
type="search"
id="filterText"
name="filterText"
placeholder="S Address; Description; Alt#" // redundant with FilterDrawer
placeholder="Search by Name; Address; Description; Alt#" // redundant with FilterDrawer
value={filterText}
onChange={e => handleFilterTextChange(e.target.value)}
/>
Expand Down

0 comments on commit 0dc5246

Please sign in to comment.