From 4d0768fd2d8b88fa15b751b81220a47ae2eea751 Mon Sep 17 00:00:00 2001 From: AgustinRodriguez-Andes <63318331+agustin1996ra@users.noreply.github.com> Date: Thu, 23 Apr 2026 11:57:25 -0300 Subject: [PATCH] =?UTF-8?q?(fix):=20Busqueda=20de=20organizaciones=20con?= =?UTF-8?q?=20=C3=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.ts b/utils/utils.ts index d9a633b676..ba8e1891ab 100644 --- a/utils/utils.ts +++ b/utils/utils.ts @@ -62,7 +62,7 @@ export function makePattern(search_string: string, options?: any): RegExp { if (options && options.startWith) { regexp = `(^(${regexp})|(\ (${regexp})))`; } - return new RegExp(regexp, 'g'); + return new RegExp(regexp, 'i'); } /**