diff --git a/users/static/js/followers_list.js b/users/static/js/followers_list.js index e80de2b0..75b04ece 100644 --- a/users/static/js/followers_list.js +++ b/users/static/js/followers_list.js @@ -80,7 +80,7 @@ $(document).ready( function() { } let url = $("#userPageURL").text().replace('0', data.id); temp.find("a").attr('href', url); - temp.find(".user-brief").text($(data.note).text()); + temp.find(".user-brief").text(data.note.replace(/(<([^>]+)>)/ig,"")); $("#main .user:last").after(temp); }); @@ -186,4 +186,4 @@ $(document).ready( function() { }); -}); \ No newline at end of file +});