From 444844c61ca6a1c6669bca10599ca604c1fc2907 Mon Sep 17 00:00:00 2001 From: BhushanSharma Date: Tue, 18 May 2021 19:08:58 +0530 Subject: [PATCH] COM-3305-review Fixed review changed special character function name --- scripts/modules/b2b-account/quotes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/modules/b2b-account/quotes.js b/scripts/modules/b2b-account/quotes.js index 95de447412..0bc85d5f48 100644 --- a/scripts/modules/b2b-account/quotes.js +++ b/scripts/modules/b2b-account/quotes.js @@ -205,7 +205,7 @@ define([ }, filter: function(collection) { var filterStr = ""; - var qName = $("#searchName").val().mzCheckSpacialChar(); + var qName = $("#searchName").val().escapeSpecialCharacters(); var qNumber = $("#searchQuoteNumber").val(); var status = $("#statusDropdown").val(); var expDate = $("#expirationdate").val();