summaryrefslogtreecommitdiffstats
path: root/ui/src/components/comment-nodes.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-20 16:53:54 -0400
committerDessalines <tyhou13@gmx.com>2020-03-20 16:55:59 -0400
commitf76c3af557c88b382fba14c8ab19f64664dcda38 (patch)
tree77f76673068bd5250e2d78ad5cc6af1564595f31 /ui/src/components/comment-nodes.tsx
parent522649d9d3c21c15cb00740fb8c86a51a64468a4 (diff)
Adding clearer goto context.
- Adding context props. - Making link / context the first selectable on user and inbox page. - Making icons a little bigger. - #609
Diffstat (limited to 'ui/src/components/comment-nodes.tsx')
-rw-r--r--ui/src/components/comment-nodes.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/components/comment-nodes.tsx b/ui/src/components/comment-nodes.tsx
index ebbef8fa..875db1f2 100644
--- a/ui/src/components/comment-nodes.tsx
+++ b/ui/src/components/comment-nodes.tsx
@@ -20,6 +20,7 @@ interface CommentNodesProps {
viewOnly?: boolean;
locked?: boolean;
markable?: boolean;
+ showContext?: boolean;
showCommunity?: boolean;
sort?: CommentSortType;
sortType?: SortType;
@@ -47,6 +48,7 @@ export class CommentNodes extends Component<
admins={this.props.admins}
postCreatorId={this.props.postCreatorId}
markable={this.props.markable}
+ showContext={this.props.showContext}
showCommunity={this.props.showCommunity}
sort={this.props.sort}
sortType={this.props.sortType}