feat: raise HTML signature length cap to 50000 chars
5000 chars is too tight for signatures containing base64-embedded images (even a small PNG can run a few thousand chars).
This commit is contained in:
@@ -263,7 +263,7 @@ export function IdentityForm({ identity, onSave, onCancel }: IdentityFormProps)
|
|||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
id="identity-html-sig"
|
id="identity-html-sig"
|
||||||
maxLength={5000}
|
maxLength={50000}
|
||||||
value={formData.htmlSignature}
|
value={formData.htmlSignature}
|
||||||
onChange={(e) => setFormData({ ...formData, htmlSignature: e.target.value })}
|
onChange={(e) => setFormData({ ...formData, htmlSignature: e.target.value })}
|
||||||
rows={5}
|
rows={5}
|
||||||
|
|||||||
Reference in New Issue
Block a user