Skip to content

Commit

Permalink
Hide func drawer textarea draggable (#3263)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlee64 authored Dec 16, 2024
1 parent 207290d commit 7d02770
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,9 @@ export const FunctionDrawer: React.FC<FunctionDrawerProps> = ({
<StyledTextArea
value={functionJSON}
placeholder={FUNCTION_PLACEHOLDER}
className="h-full"
style={{
height: '100%',
}}
startHeight="100%"
onChange={e => setFunctionJSON(e.target.value)}
className="!resize-none"
/>
{jsonValidationError && functionJSON.length > 0 && (
<Alert severity="warning">
Expand Down

0 comments on commit 7d02770

Please sign in to comment.