From cb328812761c19800401123bb1ffa6c41cddc538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A7=E8=A1=A5?= <38815121+AuYuHui@users.noreply.github.com> Date: Wed, 12 Jul 2023 17:49:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=89=BE=E7=89=B9=E5=90=8E=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E7=82=B9=E5=87=BB=E9=80=89=E4=B8=AD=E8=A2=AB=E8=89=BE?= =?UTF-8?q?=E7=89=B9=E7=94=A8=E6=88=B7=20(#89)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Home/components/ChatBox/MsgInput/item.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Home/components/ChatBox/MsgInput/item.vue b/src/views/Home/components/ChatBox/MsgInput/item.vue index 0e6f764f..69ea7bff 100644 --- a/src/views/Home/components/ChatBox/MsgInput/item.vue +++ b/src/views/Home/components/ChatBox/MsgInput/item.vue @@ -18,7 +18,7 @@ const props = defineProps({ }) const onClick = () => { - props.onSelect?.(props.item) + props.onSelect?.(props.item.uid) }