Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
nicov-iov committed Nov 11, 2024
1 parent 9407af4 commit 3e0a0c8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/Search/CtrlSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ export default {
const formattedValue = this.formatValue(this.value)
const regex = new RegExp(`(${formattedValue})`, 'gi')
const highlightedText = text.replace(regex, (match) => `<span class="highlight">${match}</span>`)
console.log({ text, regex, highlightedText, results: this.results })
return highlightedText
},
formatValue (value) {
Expand Down

0 comments on commit 3e0a0c8

Please sign in to comment.