From 3e0a0c85ace552d26d34bbd51ef079ec09fea891 Mon Sep 17 00:00:00 2001 From: Nicolas Vargas Date: Mon, 11 Nov 2024 14:02:38 -0300 Subject: [PATCH] fix: remove console.log --- src/components/Search/CtrlSearch.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Search/CtrlSearch.vue b/src/components/Search/CtrlSearch.vue index eac718e..653a2e6 100644 --- a/src/components/Search/CtrlSearch.vue +++ b/src/components/Search/CtrlSearch.vue @@ -96,7 +96,6 @@ export default { const formattedValue = this.formatValue(this.value) const regex = new RegExp(`(${formattedValue})`, 'gi') const highlightedText = text.replace(regex, (match) => `${match}`) - console.log({ text, regex, highlightedText, results: this.results }) return highlightedText }, formatValue (value) {