fix: update Textarea component to prevent resizing in textOutputView (#8688)

This commit is contained in:
Deon Sanchez 2025-06-25 12:06:39 -06:00 committed by GitHub
commit 08e428d376
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 && (