Fixed article search loop icon not working

This commit is contained in:
Eraldo Hasanaj
2019-02-11 01:32:04 +01:00
parent d30c845834
commit b6705c0017

View File

@@ -29,7 +29,7 @@ import {
src="/assets/images/close.svg"
/>
<img
(click)="search.emit(input)"
(click)="emitSearch(input)"
class="search-icon"
src="/assets/images/search.svg"
/>
@@ -62,6 +62,10 @@ export class SearchComponent implements OnInit {
this.change('');
}
emitSearch(input: string) {
this.search.emit(input);
}
keyHandler(event: any) {
if (event.key === 'Enter') {
this.search.emit(this.input);