From 75c312e66e54e9711146706ee55159e850ed9fc0 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Tue, 12 Mar 2024 08:56:55 -0400 Subject: [PATCH] CSR-1891 set font weight to bold for matching characters --- src/layouts/insurance-company/insurance-company.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/insurance-company/insurance-company.vue b/src/layouts/insurance-company/insurance-company.vue index 00cfb97d0..fba35927f 100644 --- a/src/layouts/insurance-company/insurance-company.vue +++ b/src/layouts/insurance-company/insurance-company.vue @@ -157,7 +157,7 @@ export default { let w = $(this).autocomplete("widget").find("div"); let regExpString = "(" + this.value + ")"; let re = new RegExp(regExpString, "i"); - w.html((i, html) => html.replace(re, "$1")); + w.html((i, html) => html.replace(re, "$1")); }, 5); }, });