From 50c29888ae0e3e2226ba6c404b212fbcfff910d4 Mon Sep 17 00:00:00 2001 From: Macbook Date: Tue, 2 Jun 2026 12:07:26 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=BC=EB=AA=A9=EA=B7=A0=ED=98=95=ED=91=9C?= =?UTF-8?q?=20paneViews/draw=20=ED=98=B8=EC=B6=9C=20=EC=97=AC=EB=B6=80=20?= =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B7=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- frontend/src/utils/IchimokuCloudPlugin.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/utils/IchimokuCloudPlugin.ts b/frontend/src/utils/IchimokuCloudPlugin.ts index 3c96890..d23c60e 100644 --- a/frontend/src/utils/IchimokuCloudPlugin.ts +++ b/frontend/src/utils/IchimokuCloudPlugin.ts @@ -66,10 +66,8 @@ class CloudRenderer implements IPrimitivePaneRenderer { // eslint-disable-next-line @typescript-eslint/no-explicit-any draw(target: any): void { - if (this._data.length < 2) { - console.log('[IchimokuCloud] draw: skipped, data.length=', this._data.length); - return; - } + console.log('[IchimokuCloud] draw called. data.length:', this._data.length); + if (this._data.length < 2) return; const timeScale = this._chart.timeScale(); // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -184,6 +182,7 @@ export class IchimokuCloudPlugin implements ISeriesPrimitive