From 078c10620b8805db32403e2f3873b3cb7d0b10d0 Mon Sep 17 00:00:00 2001 From: Chaitanya Rahalkar Date: Sun, 30 Mar 2025 18:24:43 -0600 Subject: [PATCH] Remove the "::" separator from the SEPARATORS_REGEXP in searcher.js. --- assets/javascripts/app/searcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/javascripts/app/searcher.js b/assets/javascripts/app/searcher.js index 7cd6e82614..b343d21b06 100644 --- a/assets/javascripts/app/searcher.js +++ b/assets/javascripts/app/searcher.js @@ -154,7 +154,7 @@ app.Searcher = class Searcher extends Events { }; static SEPARATORS_REGEXP = - /#|::|:-|->|\$(?=\w)|\-(?=\w)|\:(?=\w)|\ [\/\-&]\ |:\ |\ /g; + /#|:-|->|\$(?=\w)|\-(?=\w)|\:(?=\w)|\ [\/\-&]\ |:\ |\ /g; static EOS_SEPARATORS_REGEXP = /(\w)[\-:]$/; static INFO_PARANTHESES_REGEXP = /\ \(\w+?\)$/; static EMPTY_PARANTHESES_REGEXP = /\(\)/;