Skip to content

Commit 86e60df

Browse files
committed
Minor JS fix
1 parent 8d88f75 commit 86e60df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/ff.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5958,7 +5958,7 @@ function show_topic(topic_id = '', parent_topic_id = '') {
59585958
const icon = document.createElement('i');
59595959
icon.className = "fa-solid fa-circle-user";
59605960
icon.style.marginRight = '5px';
5961-
comment_header.appendChild(icon);
5961+
topic_header.appendChild(icon);
59625962
} else {
59635963
const profile_img = document.createElement('img');
59645964
profile_img.src = `/download/${profile.profile_key}`;
@@ -6088,7 +6088,7 @@ function show_topic(topic_id = '', parent_topic_id = '') {
60886088
const icon = document.createElement('i');
60896089
icon.className = "fa-solid fa-circle-user";
60906090
icon.style.marginRight = '5px';
6091-
comment_header.appendChild(icon);
6091+
post_header.appendChild(icon);
60926092
} else {
60936093
const profile_img = document.createElement('img');
60946094
profile_img.src = `/download/${profile.profile_key}`;

0 commit comments

Comments
 (0)