diff --git a/services/web/frontend/js/features/source-editor/components/review-panel/editor-widgets/editor-widgets.tsx b/services/web/frontend/js/features/source-editor/components/review-panel/editor-widgets/editor-widgets.tsx index 0c6f4ede8f..51fb561ee1 100644 --- a/services/web/frontend/js/features/source-editor/components/review-panel/editor-widgets/editor-widgets.tsx +++ b/services/web/frontend/js/features/source-editor/components/review-panel/editor-widgets/editor-widgets.tsx @@ -23,7 +23,8 @@ function EditorWidgets() { handleShowBulkRejectDialog, handleConfirmDialog, } = useBulkActionsModal() - const { setIsAddingComment } = useReviewPanelUpdaterFnsContext() + const { setIsAddingComment, handleSetSubview } = + useReviewPanelUpdaterFnsContext() const [addNewComment] = useScopeValue<(e: React.MouseEvent) => void>( 'addNewComment' @@ -47,6 +48,7 @@ function EditorWidgets() { addNewComment(e) setTimeout(() => { // Re-render the comment box in order to add autofocus every time + handleSetSubview('cur_file') setIsAddingComment(false) setIsAddingComment(true) }, 0)