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

This commit is contained in:
Dessalines 2022-11-11 13:20:44 -05:00
parent 24548ccba8
commit ba8d19b5c9
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 &&

View file

@ -74,6 +74,7 @@ export const fetchLimit = 40;
export const trendingFetchLimit = 6;
export const mentionDropdownFetchLimit = 10;
export const commentTreeMaxDepth = 8;
export const markdownFieldCharacterLimit = 50000;
export const relTags = "noopener nofollow";