From eccd8260888dbd5cdc910d115586a6659ed97455 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 13 Jan 2020 23:04:47 -0500 Subject: [PATCH] Adding options below comment searches. Fixes #412 --- ui/src/components/search.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/ui/src/components/search.tsx b/ui/src/components/search.tsx index 00c670d8..70219d4e 100644 --- a/ui/src/components/search.tsx +++ b/ui/src/components/search.tsx @@ -82,14 +82,7 @@ export class Search extends Component { this.handleSortChange = this.handleSortChange.bind(this); this.subscription = WebSocketService.Instance.subject - .pipe( - retryWhen(errors => - errors.pipe( - delay(3000), - take(10) - ) - ) - ) + .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10)))) .subscribe( msg => this.parseMessage(msg), err => console.error(err), @@ -266,7 +259,7 @@ export class Search extends Component { {i.type_ == 'comments' && ( )} @@ -317,7 +310,7 @@ export class Search extends Component { return (
{this.state.searchResponse.comments.map(comment => ( - + ))}
);