Merge branch 'dev' into materialized_views
This commit is contained in:
commit
cc11930bdd
1 changed files with 3 additions and 10 deletions
13
ui/src/components/search.tsx
vendored
13
ui/src/components/search.tsx
vendored
|
@ -82,14 +82,7 @@ export class Search extends Component<any, SearchState> {
|
||||||
this.handleSortChange = this.handleSortChange.bind(this);
|
this.handleSortChange = this.handleSortChange.bind(this);
|
||||||
|
|
||||||
this.subscription = WebSocketService.Instance.subject
|
this.subscription = WebSocketService.Instance.subject
|
||||||
.pipe(
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
||||||
retryWhen(errors =>
|
|
||||||
errors.pipe(
|
|
||||||
delay(3000),
|
|
||||||
take(10)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.subscribe(
|
.subscribe(
|
||||||
msg => this.parseMessage(msg),
|
msg => this.parseMessage(msg),
|
||||||
err => console.error(err),
|
err => console.error(err),
|
||||||
|
@ -266,7 +259,7 @@ export class Search extends Component<any, SearchState> {
|
||||||
{i.type_ == 'comments' && (
|
{i.type_ == 'comments' && (
|
||||||
<CommentNodes
|
<CommentNodes
|
||||||
nodes={[{ comment: i.data as Comment }]}
|
nodes={[{ comment: i.data as Comment }]}
|
||||||
viewOnly
|
locked
|
||||||
noIndent
|
noIndent
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
@ -317,7 +310,7 @@ export class Search extends Component<any, SearchState> {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{this.state.searchResponse.comments.map(comment => (
|
{this.state.searchResponse.comments.map(comment => (
|
||||||
<CommentNodes nodes={[{ comment: comment }]} noIndent viewOnly />
|
<CommentNodes nodes={[{ comment: comment }]} locked noIndent />
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Reference in a new issue