We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aded381 commit b700779Copy full SHA for b700779
webview-ui/src/components/settings/AutoApproveSettings.tsx
@@ -205,7 +205,7 @@ export const AutoApproveSettings = ({
205
<div className="flex gap-2">
206
<Input
207
value={commandInput}
208
- onInput={(e: any) => setCommandInput(e.target.value)}
+ onChange={(e: any) => setCommandInput(e.target.value)}
209
onKeyDown={(e: any) => {
210
if (e.key === "Enter") {
211
e.preventDefault()
@@ -234,7 +234,7 @@ export const AutoApproveSettings = ({
234
}}>
235
<div className="flex flex-row items-center gap-1">
236
<div>{cmd}</div>
237
- <X className="text-primary-foreground scale-75" />
+ <X className="text-foreground scale-75" />
238
</div>
239
</Button>
240
))}
0 commit comments