Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
lls_program
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-09-19 10:02:33 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
68065e875867337efb1184a5ddd7c565df62220d
68065e87
1 parent
073a86dd
fix(JoinFamily): 添加可选链操作符防止未定义错误
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/pages/JoinFamily/index.vue
src/pages/JoinFamily/index.vue
View file @
68065e8
...
...
@@ -253,8 +253,8 @@ const filteredFamilies = computed(() => {
return mockFamilies.value
}
return mockFamilies.value.filter(family =>
family.name.includes(searchKeyword.value) ||
family.description.includes(searchKeyword.value)
family.name
?
.includes(searchKeyword.value) ||
family.description
?
.includes(searchKeyword.value)
)
});
...
...
Please
register
or
login
to post a comment