Fix: Fixed the issue where the prompt word edit box had no scroll bar #3221 (#9215)

### What problem does this PR solve?
Fix: Fixed the issue where the prompt word edit box had no scroll bar
#3221

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2025-08-04 18:06:19 +08:00
committed by GitHub
parent 60d652d2e1
commit 53618d13bb
2 changed files with 31 additions and 16 deletions

View File

@ -103,9 +103,12 @@ function PromptContent({
</div>
)}
<ContentEditable
className={cn('relative px-2 py-1 focus-visible:outline-none', {
'min-h-40': multiLine,
})}
className={cn(
'relative px-2 py-1 focus-visible:outline-none max-h-[50vh] overflow-auto',
{
'min-h-40': multiLine,
},
)}
onBlur={handleBlur}
onFocus={handleFocus}
/>