From c05d584045e31014728859930f2b73b6848c53ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=92=E6=B2=93=E5=A6=82=E6=B5=81=E6=98=9F?= <13523376917@163.com> Date: Fri, 25 Jul 2025 03:38:09 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/components/AppLinkInput/AppLinkSel?= =?UTF-8?q?ectDialog.vue.=20=E4=BF=AE=E5=A4=8DVscode=20TS=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 飒沓如流星 <13523376917@163.com> --- src/components/AppLinkInput/AppLinkSelectDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppLinkInput/AppLinkSelectDialog.vue b/src/components/AppLinkInput/AppLinkSelectDialog.vue index 63f19662e..cdd0b66e9 100644 --- a/src/components/AppLinkInput/AppLinkSelectDialog.vue +++ b/src/components/AppLinkInput/AppLinkSelectDialog.vue @@ -170,7 +170,7 @@ const groupBtnRefs = ref([]) const scrollToGroupBtn = (group: string) => { const groupBtn = groupBtnRefs.value .map((btn: ButtonInstance) => btn['ref']) - .find((ref: Node) => ref.textContent === group) + .find((ref: HTMLButtonElement) => ref.textContent === group) if (groupBtn) { groupScrollbar.value?.setScrollTop(groupBtn.offsetTop) }