this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Limit chat form textarea max height (#10)

authored by

James Blair and committed by
GitHub
c31e3412 151d4e5f

+1 -1
+1 -1
apps/web/src/components/chat-form.tsx
··· 113 113 <Textarea 114 114 autoFocus 115 115 placeholder="Write your message here..." 116 - className="wrap-anywhere min-h-25 focus-visible:border-transparent focus-visible:ring-0" 116 + className="wrap-anywhere max-h-64 min-h-25 focus-visible:border-transparent focus-visible:ring-0" 117 117 value={text} 118 118 disabled={isAuthUnavailable} 119 119 onChange={(event) => setText(event.currentTarget.value)}