Skip to content

Commit

Permalink
added a build
Browse files Browse the repository at this point in the history
  • Loading branch information
tmushayahama committed Mar 27, 2020
1 parent b4ba402 commit 365a0bb
Show file tree
Hide file tree
Showing 5 changed files with 397,742 additions and 452,227 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,14 @@ export class SearchFormComponent implements OnInit, OnDestroy {
distinctUntilChanged(),
debounceTime(400)
).subscribe(data => {
let searchData = self.searchFormData['term'];
this.noctuaLookupService.golrTermLookup(data, searchData.id).subscribe(response => {
self.searchFormData['term'].searchResults = response
});

});

this.searchForm.get('gp').valueChanges.pipe(
distinctUntilChanged(),
debounceTime(400)
).subscribe(data => {
let searchData = self.searchFormData['gp'];
this.noctuaLookupService.golrTermLookup(data, searchData.id).subscribe(response => {
self.searchFormData['gp'].searchResults = response
})

})


Expand Down
Loading

0 comments on commit 365a0bb

Please sign in to comment.