formatting

This commit is contained in:
Hayden 2021-02-21 16:35:05 -09:00
commit 95a0233d98

View file

@ -63,7 +63,7 @@ export default {
},
created() {
window.addEventListener("keyup", e => {
if (e.key == "/" && !document.activeElement.id.startsWith('input') ) {
if (e.key == "/" && !document.activeElement.id.startsWith("input")) {
this.search = !this.search;
}
});