Add client side max length to Transporter

This commit is contained in:
Tanner Collin 2020-02-20 05:52:08 +00:00
parent 67831a1c86
commit add5ccf6b4

View File

@ -40,6 +40,7 @@ function PasteForm(props) {
return ( return (
<Form onSubmit={handleSubmit}> <Form onSubmit={handleSubmit}>
<Form.TextArea <Form.TextArea
maxlength={20000}
rows={20} rows={20}
{...makeProps('paste')} {...makeProps('paste')}
/> />