From 83b5c552a645b1cd3e46b4244e56d415b42a3428 Mon Sep 17 00:00:00 2001 From: Martti Malmi Date: Sat, 11 Apr 2020 14:21:57 +0300 Subject: [PATCH] fix previous --- src/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/app.js b/src/js/app.js index 767f4278..f93c5b10 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -680,7 +680,7 @@ function showProfile(pub) { $('#profile .profile-photo-container').show(); $('#profile .profile-photo').attr('src', photo); }); - $('#profile-about').empty(); + $('#profile .profile-about').empty(); gun.user(pub).get('profile').get('about').on(about => { $('#profile .profile-about').toggle(about && about.length > 0); $('#profile .profile-about').text(about);