Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion webview-ui/src/components/chat/ChatTextArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,9 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
minRows={3}
maxRows={15}
autoFocus={true}
// Note: spellCheck doesn't work in VSCode webviews due to platform limitations
// The native browser spell check functionality is disabled in VSCode's webview environment
// See: https://github.com/microsoft/vscode/issues/30180
className={cn(
"w-full",
"text-vscode-input-foreground",
Expand Down Expand Up @@ -1106,7 +1109,9 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
"scrollbar-none",
"scrollbar-hide",
)}
onScroll={() => updateHighlights()}
onScroll={() => {
updateHighlights()
}}
/>

<div className="absolute top-1 right-1 z-30">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,6 @@ describe("mergeExtensionState", () => {
apiConfiguration: { modelMaxThinkingTokens: 456, modelTemperature: 0.3 },
experiments: {
powerSteering: true,
marketplace: false,
disableCompletionCommand: false,
concurrentFileReads: true,
multiFileApplyDiff: true,
} as Record<ExperimentId, boolean>,
}
Expand All @@ -238,9 +235,6 @@ describe("mergeExtensionState", () => {

expect(result.experiments).toEqual({
powerSteering: true,
marketplace: false,
disableCompletionCommand: false,
concurrentFileReads: true,
multiFileApplyDiff: true,
})
})
Expand Down
Loading