import { UserService } from "../../services";
import {
isBrowser,
+ markdownFieldCharacterLimit,
markdownHelpUrl,
mdToHtml,
pictrsDeleteToast,
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 &&
export const trendingFetchLimit = 6;
export const mentionDropdownFetchLimit = 10;
export const commentTreeMaxDepth = 8;
+export const markdownFieldCharacterLimit = 50000;
export const relTags = "noopener nofollow";