Skip to content
Snippets Groups Projects
Commit fadc0aab authored by Prasad's avatar Prasad
Browse files

Fixes: Retain UTF-8 characters when editing tags

parent 52f6def8
No related branches found
No related tags found
No related merge requests found
......@@ -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
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment