Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
fix: missing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
tux4 committed Oct 15, 2019
1 parent bf0fb87 commit 1f9c2aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions parijat-frontend/src/components/filters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,19 +281,19 @@ class Filters extends Component {
this.scrollingDlg.MDComponent.show();
}}
>
Filters
खोज सुधार
</Button>
<Dialog
ref={scrollingDlg => {
this.scrollingDlg = scrollingDlg;
}}
>
<Dialog.Header>Select Filters</Dialog.Header>
<Dialog.Header>खोज सुधार</Dialog.Header>
<Dialog.Body scrollable>
<FiltersList />
</Dialog.Body>
<Dialog.Footer>
<Dialog.FooterButton cancel>Close</Dialog.FooterButton>
<Dialog.FooterButton cancel>बन्द गर्नुहोस्</Dialog.FooterButton>
</Dialog.Footer>
</Dialog>
</div>
Expand Down
2 changes: 1 addition & 1 deletion parijat-frontend/src/components/searchbox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default class SearchBox extends Component {
};

onAutocompleteSelect = searchValue => {
this.props.onSubmit(this.state.searchValue);
this.props.onSubmit(searchValue);
};

handleSubmit = evnt => {
Expand Down

0 comments on commit 1f9c2aa

Please sign in to comment.