From d5d2e413814ac0d27061a2bcfc0cb502c1777f71 Mon Sep 17 00:00:00 2001 From: Hannah Roth Date: Wed, 25 Sep 2024 10:19:37 -0400 Subject: [PATCH] chore: might as well print out the searchText --- es-design-system/layouts/nav.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-design-system/layouts/nav.vue b/es-design-system/layouts/nav.vue index e14d2654f..2b9d959c7 100644 --- a/es-design-system/layouts/nav.vue +++ b/es-design-system/layouts/nav.vue @@ -88,7 +88,7 @@ export default { methods: { searchButtonClicked() { /* eslint-disable-next-line no-console */ - console.log('Searching...'); + console.log('Searching...', this.searchText); }, }, };