From 080c0bb8b7c354e224d629d4e44cb82655893411 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 22 Dec 2022 22:25:45 -0500 Subject: [PATCH] fix current js errors --- common/static/js/home.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/static/js/home.js b/common/static/js/home.js index 78c66924..546d8d8e 100644 --- a/common/static/js/home.js +++ b/common/static/js/home.js @@ -30,8 +30,8 @@ $(document).ready( function() { } $("#userInfoCard .mast-avatar").attr("src", userData.avatar); $("#userInfoCard .mast-displayname").html(userName); - $("#userInfoCard .mast-brief").text($(userData.note).text()); - $(userInfoSpinner).remove(); + $("#userInfoCard .mast-brief").text($('

'+userData.note+'

').text()); + // $(userInfoSpinner).remove(); } );