summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-07-13 15:20:46 -0400
committerDessalines <tyhou13@gmx.com>2020-07-13 15:20:46 -0400
commit23688f17bbbd6fa35af797f171ef6fe589153cb7 (patch)
tree9f26495159442f4184d2169c7096623efdd002aa /ui/src/components/post.tsx
parentabe7a41f585efac68678697658c18de5e5355808 (diff)
Making chat only sortable by new.
Diffstat (limited to 'ui/src/components/post.tsx')
-rw-r--r--ui/src/components/post.tsx15
1 files changed, 2 insertions, 13 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index ce737a4e..9eef286c 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -283,19 +283,6 @@ export class Post extends Component<any, PostState> {
<div class="btn-group btn-group-toggle mb-2">
<label
className={`btn btn-sm btn-secondary pointer ${
- this.state.commentViewType === CommentViewType.Tree && 'active'
- }`}
- >
- {i18n.t('tree')}
- <input
- type="radio"
- value={CommentViewType.Tree}
- checked={this.state.commentViewType === CommentViewType.Tree}
- onChange={linkEvent(this, this.handleCommentViewTypeChange)}
- />
- </label>
- <label
- className={`btn btn-sm btn-secondary pointer ${
this.state.commentViewType === CommentViewType.Chat && 'active'
}`}
>
@@ -346,11 +333,13 @@ export class Post extends Component<any, PostState> {
handleCommentSortChange(i: Post, event: any) {
i.state.commentSort = Number(event.target.value);
+ i.state.commentViewType = CommentViewType.Tree;
i.setState(i.state);
}
handleCommentViewTypeChange(i: Post, event: any) {
i.state.commentViewType = Number(event.target.value);
+ i.state.commentSort = CommentSortType.New;
i.setState(i.state);
}