From 535410854626c7cb1025887e419cf8896d5d35e2 Mon Sep 17 00:00:00 2001 From: ymq Date: Wed, 12 Aug 2026 11:22:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=86=E9=A2=91=E7=94=A8=E5=8E=9F?= =?UTF-8?q?=E7=94=9Fvideo=E6=A0=87=E7=AD=BE(controls+autoplay+muted)?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2VideoPlayer=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wwwroot/knowledge_bases_list/search_result.dspy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/knowledge_bases_list/search_result.dspy b/wwwroot/knowledge_bases_list/search_result.dspy index 5feaff1..89a281b 100644 --- a/wwwroot/knowledge_bases_list/search_result.dspy +++ b/wwwroot/knowledge_bases_list/search_result.dspy @@ -250,7 +250,7 @@ else: ext = h["file_ext"] if ext in video_exts: if media_url: - card_subwidgets.append({"widgettype": "VideoPlayer", "options": {"url": media_url, "width": "100%", "autoplay": True}}) + card_subwidgets.append({"widgettype": "Html", "options": {"html": "", "padding": "4px 0"}}) elif ext in audio_exts: if media_url: card_subwidgets.append({"widgettype": "Html", "options": {"html": "", "padding": "4px 0"}})