Skip to content

Commit

Permalink
changing let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
ironmonk88 committed Jun 25, 2024
1 parent 180d52d commit d515630
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/CompendiumBook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -503,9 +503,9 @@ export default {
return;
}
// adding title and type here for a future improvement to allow for a more specific searching
let title = this.searchTerm.toLowerCase();
let type = null;
let query = this.searchTerm.toLowerCase();
const title = this.searchTerm.toLowerCase();
const type = null;
const query = this.searchTerm.toLowerCase();
const resultObject = (entity) => {
const section =
Expand Down

0 comments on commit d515630

Please sign in to comment.