From fadc0aabaff178f710349e38b6848bac814c8868 Mon Sep 17 00:00:00 2001 From: Prasad <prasad@vtiger.com> Date: Mon, 15 Apr 2024 17:54:30 +0530 Subject: [PATCH] Fixes: Retain UTF-8 characters when editing tags --- layouts/v7/modules/Settings/Tags/resources/List.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/v7/modules/Settings/Tags/resources/List.js b/layouts/v7/modules/Settings/Tags/resources/List.js index 0a945a6cb..2a084ad13 100644 --- a/layouts/v7/modules/Settings/Tags/resources/List.js +++ b/layouts/v7/modules/Settings/Tags/resources/List.js @@ -82,7 +82,7 @@ Settings_Vtiger_List_Js('Settings_Tags_List_Js',{ var editTagContainer = this.getEditTagContainer(); editTagContainer.find('[name="id"]').val(tagInfo.id); - editTagContainer.find('[name="tagName"]').val(tagInfo.tag); + editTagContainer.find('[name="tagName"]').val(app.helper.getDecodedValue(tagInfo.tag)); if(tagInfo.visibility == "public") { editTagContainer.find('[type="checkbox"]').prop('checked',true); }else{ @@ -199,4 +199,4 @@ Settings_Vtiger_List_Js('Settings_Tags_List_Js',{ self.registerEditTagSaveEvent(); }) } -}); \ No newline at end of file +}); -- GitLab