We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb821a commit 0039073Copy full SHA for 0039073
src/components/Section.vue
@@ -57,7 +57,10 @@ export default {
57
}
58
return cheatsheet
59
.filter(obj => {
60
- return obj.command.toLowerCase().includes(this.search.toLowerCase());
+ return obj.command
61
+ .toString()
62
+ .toLowerCase()
63
+ .includes(this.search.toLowerCase());
64
})
65
.sort((a, b) => (a.command > b.command ? 1 : -1));
66
0 commit comments