Skip to content

Commit 74c4ba3

Browse files
committed
feat - increase number of lines and characters for notes
1 parent babd748 commit 74c4ba3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/codever-ui/src/app/my-notes/save-note-form/note-editor.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<div *ngIf="content.errors.tooManyCharacters">
102102
Your description has
103103
{{ content.errors.tooManyCharacters.value }} characters. Maximum
104-
10000 characters are allowed.
104+
30000 characters are allowed.
105105
</div>
106106
</div>
107107
</div>

apps/codever-ui/src/app/my-notes/save-note-form/note-editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class NoteEditorComponent implements OnInit, OnDestroy, OnChanges {
170170
title: [this.title ? this.title : '', Validators.required],
171171
reference: this.reference,
172172
tags: this.formBuilder.array([], [tagsValidator, Validators.required]),
173-
content: [this.passedContent, textSizeValidator(5000, 500)],
173+
content: [this.passedContent, textSizeValidator(30000, 10000)],
174174
});
175175
}
176176

0 commit comments

Comments
 (0)