update src/components/AppLinkInput/AppLinkSelectDialog.vue.

修复Vscode TS校验报错问题

Signed-off-by: 飒沓如流星 <13523376917@163.com>
pull/797/head
飒沓如流星 2025-07-25 03:38:09 +00:00 committed by Gitee
parent 132a4b5e30
commit c05d584045
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ const groupBtnRefs = ref<ButtonInstance[]>([])
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)
}