1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Increase textarea debounce time for custom markup

This commit is contained in:
Chocobozzz 2023-01-13 09:30:47 +01:00
parent eba2a7a834
commit 6a056bbe4d
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 5 additions and 3 deletions

View file

@ -31,6 +31,8 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit {
@Input() markdownType: 'text' | 'enhanced' = 'text'
@Input() customMarkdownRenderer?: (text: string) => Promise<string | HTMLElement>
@Input() debounceTime = 150
@Input() markdownVideo: Video
@Input() name = 'description'
@ -59,7 +61,7 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit {
ngOnInit () {
this.contentChanged
.pipe(
debounceTime(150),
debounceTime(this.debounceTime),
distinctUntilChanged()
)
.subscribe(() => this.updatePreviews())