From 88c6fd31380922df0e85bcc445b4eff39a6f2701 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 1 Jun 2026 11:40:38 +0800 Subject: [PATCH] bugfix --- bricks/llmout.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/bricks/llmout.js b/bricks/llmout.js index 666937c..e9783da 100644 --- a/bricks/llmout.js +++ b/bricks/llmout.js @@ -115,7 +115,6 @@ bricks.LlmOut = class extends bricks.VBox { url: url, cheight:2 }); - } this.add_widget(w); } render_image(i){ @@ -203,16 +202,16 @@ bricks.LlmOut = class extends bricks.VBox { } this.videos.forEach(v => { this.render_video(v); - }) + }); this.glbs.forEach(glb => { this.render_glb(glb); - } + }); this.audios.forEach(a => { this.render_audio(a); - } + }); this.imges.forEach(i => { this.render_image(i); - } + }); if(this.s_w){ this.add_widget(this.s_w); }