From 74655de6180d53e8c5f7a4cf156b471de181bf21 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 11 Jul 2020 21:47:38 -0400 Subject: Comment box focus (#947) * Add fallback url to fuse devserver(closes #945) * Only focus on reply commentform textareas. Fixes #944 Co-authored-by: Justin Hernandez --- ui/src/components/comment-form.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ui/src/components/comment-form.tsx') diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx index 04720cbb..00b4fe1e 100644 --- a/ui/src/components/comment-form.tsx +++ b/ui/src/components/comment-form.tsx @@ -33,6 +33,7 @@ interface CommentFormProps { onReplyCancel?(): any; edit?: boolean; disabled?: boolean; + focus?: boolean; } interface CommentFormState { @@ -122,7 +123,9 @@ export class CommentForm extends Component { setTimeout(() => autosize.update(textarea), 10); } - textarea.focus(); + if (this.props.focus) { + textarea.focus(); + } } } -- cgit v1.2.3