Skip to content

Commit 9dd3704

Browse files
committed
feat - increase number of lines and characters for notes
1 parent ecb8983 commit 9dd3704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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
@@ -172,7 +172,7 @@ export class NoteEditorComponent implements OnInit, OnDestroy, OnChanges {
172172
title: [this.title ? this.title : '', Validators.required],
173173
reference: this.reference,
174174
tags: this.formBuilder.array([], [tagsValidator, Validators.required]),
175-
content: [this.passedContent, textSizeValidator(this.maxNumberOfCharacters, 10000)],
175+
content: [this.passedContent, textSizeValidator(this.maxNumberOfCharacters, 30000)],
176176
});
177177
}
178178

0 commit comments

Comments
 (0)