-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(zbugs): Put limits on textareas too for UI feedback.
- Loading branch information
Showing
4 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// NOTE: These limits are also in the postgres schema. These here are just for | ||
// UI feedback. | ||
export const MAX_ISSUE_TITLE_LENGTH = 128; | ||
export const MAX_ISSUE_DESCRIPTION_LENGTH = 10 * 1024; | ||
|
||
// The launch post has a special maxLength because trolls. | ||
export const maxCommentLength = (issueID: string) => | ||
issueID === 'duuW9Nyj5cTNLlimp9Qje' ? 1024 : 64 * 1024; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters