We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fbd583 commit 9fa038cCopy full SHA for 9fa038c
1 file changed
src/renderer/features/agents/main/active-chat.tsx
@@ -3933,8 +3933,8 @@ const ChatViewInner = memo(function ChatViewInner({
3933
/>
3934
)}
3935
3936
- {/* Quick comment input */}
3937
- {quickCommentState && (
+ {/* Quick comment input - only render for active tab to prevent portal escaping pointerEvents isolation */}
+ {isActive && quickCommentState && (
3938
<QuickCommentInput
3939
selectedText={quickCommentState.selectedText}
3940
source={quickCommentState.source}
0 commit comments