Skip to content

Commit

Permalink
Merge pull request #55284 from Tony-MK/refactor/52923
Browse files Browse the repository at this point in the history
[No QA] Applying changes to searchParser.peggy
  • Loading branch information
srikarparsi authored Jan 21, 2025
2 parents abf8d1d + 139cf78 commit f394432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/SearchParser/searchParser.peggy
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ filterList
const keywordFilter = buildFilter(
"eq",
"keyword",
keywords.map((filter) => filter.right).flat()
keywords.map((filter) => filter.right.replace(/^(['"])(.*)\1$/, '$2')).flat()
);
if (keywordFilter.right.length > 0) {
nonKeywords.push(keywordFilter);
Expand Down

0 comments on commit f394432

Please sign in to comment.