Update following_list.js

This commit is contained in:
umonaca 2020-05-08 04:10:36 -04:00 committed by GitHub
parent 9addac5a1d
commit bc91a415ff

View file

@ -112,7 +112,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);
});