From 1b387fa221d6c43a479672c4d1f49d1d34195399 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Tue, 9 Oct 2018 18:02:49 +0200 Subject: [PATCH] Increase timeout. --- src/Squidex/app/shared/components/rich-editor.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Squidex/app/shared/components/rich-editor.component.ts b/src/Squidex/app/shared/components/rich-editor.component.ts index 940d066b3..4789dd670 100644 --- a/src/Squidex/app/shared/components/rich-editor.component.ts +++ b/src/Squidex/app/shared/components/rich-editor.component.ts @@ -106,7 +106,7 @@ export class RichEditorComponent implements ControlValueAccessor, AfterViewInit, self.tinyInitTimer = setTimeout(() => { self.tinyEditor.setContent(this.value || ''); - }, 500); + }, 1000); }, target: this.editor.nativeElement