Skip to content

Commit 0039073

Browse files
committed
Add http code and git sheets
1 parent 2bb821a commit 0039073

File tree

2 files changed

+229
-184
lines changed

2 files changed

+229
-184
lines changed

src/components/Section.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ export default {
5757
}
5858
return cheatsheet
5959
.filter(obj => {
60-
return obj.command.toLowerCase().includes(this.search.toLowerCase());
60+
return obj.command
61+
.toString()
62+
.toLowerCase()
63+
.includes(this.search.toLowerCase());
6164
})
6265
.sort((a, b) => (a.command > b.command ? 1 : -1));
6366
}

0 commit comments

Comments
 (0)