From edf35b7dd0d21855afdef8a01a5607872f217a35 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Thu, 2 Oct 2025 21:28:11 +0800 Subject: [PATCH] =?UTF-8?q?ui:=20=E9=98=BB=E6=AD=A2=20=E9=99=84=E4=BB=B6?= =?UTF-8?q?=20=E9=BB=9E=E6=93=8A=E5=B0=8E=E8=87=B4=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E8=8F=9C=E5=96=AE=E5=BD=88=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/ui/custom-elements/chat-video.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/ui/custom-elements/chat-video.ts b/client/ui/custom-elements/chat-video.ts index 36049b9..6b77a55 100644 --- a/client/ui/custom-elements/chat-video.ts +++ b/client/ui/custom-elements/chat-video.ts @@ -11,6 +11,7 @@ customElements.define('chat-video', class extends HTMLElement { e.style.height = "100%" e.style.borderRadius = "var(--mdui-shape-corner-medium)" e.src = $(this).attr('src') as string + e.onclick = (e) => e.stopPropagation() this.appendChild(e) } })