Skip to content

Commit

Permalink
Merge pull request #5369 from uzmannazari/patch-3
Browse files Browse the repository at this point in the history
Modify search placeholder
  • Loading branch information
valadas authored Dec 6, 2022
2 parents 9fd5e15 + 7252e93 commit ef79fdf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class SearchPageInput extends Component {
value={this.state.searchTerm}
onChange={this.onSearchFieldChange.bind(this)}
onKeyPress={(e) => { e.key === "Enter" ? this.props.onSearch(this.state.searchTerm) : null; }}
placeholder="Search" />
placeholder={Localization.get("Search")} />
</div>
{this.state.searchTerm ?
<div
Expand Down Expand Up @@ -74,4 +74,4 @@ SearchPageInput.propTypes = {
clearSearch: PropTypes.func.isRequired
};

export default SearchPageInput;
export default SearchPageInput;

0 comments on commit ef79fdf

Please # to comment.