Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in virtual-list files (Core/React/Svelte) #4277

Merged
merged 4 commits into from
Jul 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update virtual-list-vdom.html
  • Loading branch information
DAnn2012 authored Jul 3, 2024
commit 9c612e03ae3fe757700f9ecf036424125adca31c
4 changes: 2 additions & 2 deletions kitchen-sink/core/pages/virtual-list-vdom.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
for (var i = 0; i < items.length; i++) {
if (items[i].title.toLowerCase().indexOf(query.toLowerCase()) >= 0 || query.trim() === '') found.push(i);
}
return found; //return array with mathced indexes
return found; //return array with matched indexes
},
// Item height
height: $theme.ios ? 63 : ($theme.md ? 73 : 77),
Expand All @@ -94,4 +94,4 @@

return $render;
}
</script>
</script>