mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): restore resizable prompt boxes
The autosize proved to be unpopular. Changed back to resizable.
This commit is contained in:
@ -24,8 +24,8 @@ export const InvAutosizeTextarea = memo(
|
||||
ref={ref}
|
||||
overflow="scroll"
|
||||
w="100%"
|
||||
resize="none"
|
||||
minRows={3}
|
||||
minH={20}
|
||||
onPaste={stopPastePropagation}
|
||||
onKeyUp={onKeyUpDown}
|
||||
onKeyDown={onKeyUpDown}
|
||||
|
@ -23,6 +23,7 @@ export const InvTextarea = memo(
|
||||
onPaste={stopPastePropagation}
|
||||
onKeyUp={onKeyUpDown}
|
||||
onKeyDown={onKeyUpDown}
|
||||
minH={20}
|
||||
{...rest}
|
||||
/>
|
||||
);
|
||||
|
Reference in New Issue
Block a user