diff --git a/odex25_base/fims_general_search_tree_view/static/src/js/list_search.js b/odex25_base/fims_general_search_tree_view/static/src/js/list_search.js index a3c20a1e5..98ca13242 100644 --- a/odex25_base/fims_general_search_tree_view/static/src/js/list_search.js +++ b/odex25_base/fims_general_search_tree_view/static/src/js/list_search.js @@ -43,7 +43,7 @@ odoo.define('fims_row_no_header_fix_tree_view.list_search', function (require) { .replace(/[\u06F0-\u06F9]/g, (d) => String.fromCharCode(d.charCodeAt(0) - 0x06F0 + 0x0030)) // Convert Extended Arabic-Indic digits to Latin digits .replace(/[\u0622\u0623\u0625\u0627]/g, 'ا') // Normalize different forms of Alef .replace(/[\u0629]/g, 'ه') // Normalize Teh Marbuta to Heh - .replace(/[\u064A\u0626]/g, 'ي') // Normalize different forms of Yeh + .replace(/[\u064A\u0626\u0649]/g, 'ي') // Normalize different forms of Yeh .replace(/[\u0624\u0648]/g, 'و'); // Normalize Waw and its variants }