fix: update Textarea component to prevent resizing in textOutputView (#8688)
This commit is contained in:
parent
6c76957f3e
commit
08e428d376
1 changed files with 1 additions and 2 deletions
|
|
@ -17,10 +17,9 @@ const TextOutputView = ({
|
|||
<>
|
||||
{" "}
|
||||
<Textarea
|
||||
className={`w-full custom-scroll ${left ? "min-h-32" : "h-full"}`}
|
||||
className={`w-full resize-none custom-scroll ${left ? "min-h-32" : "h-full"}`}
|
||||
placeholder={"Empty"}
|
||||
readOnly
|
||||
// update to real value on flowPool
|
||||
value={value}
|
||||
/>
|
||||
{isTruncated && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue