Increase markdown field char limit to 50k. Fixes #849 (#850)

This commit is contained in:
Dessalines 2022-11-12 12:06:41 -05:00 committed by GitHub
parent 24548ccba8
commit ee0cdde3b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -8,6 +8,7 @@ import { i18n } from "../../i18next";
import { UserService } from "../../services";
import {
isBrowser,
markdownFieldCharacterLimit,
markdownHelpUrl,
mdToHtml,
pictrsDeleteToast,
@ -143,7 +144,9 @@ export class MarkdownTextArea extends Component<
required
disabled={this.props.disabled}
rows={2}
maxLength={this.props.maxLength.unwrapOr(10000)}
maxLength={this.props.maxLength.unwrapOr(
markdownFieldCharacterLimit
)}
placeholder={toUndefined(this.props.placeholder)}
/>
{this.state.previewMode &&