show event id in history page

This commit is contained in:
highperfocused 2025-03-09 20:40:25 +01:00
parent a5d6cc7e2e
commit bab736aa07

View File

@ -440,6 +440,11 @@ func main() {
overflow: hidden; overflow: hidden;
margin-bottom: 10px; margin-bottom: 10px;
} }
.post-id {
max-height: 100px;
overflow: hidden;
margin-bottom: 10px;
}
.post-reactions { .post-reactions {
font-weight: bold; font-weight: bold;
color: #007bff; color: #007bff;
@ -536,6 +541,7 @@ func main() {
item.posts.forEach(post => { item.posts.forEach(post => {
html += '<div class="post">' + html += '<div class="post">' +
'<div class="post-id">' + truncateContent(post.id) + '</div><hr />' +
'<div class="post-content">' + truncateContent(post.content) + '</div>' + '<div class="post-content">' + truncateContent(post.content) + '</div>' +
'<div class="post-reactions">Reactions: ' + post.reaction_count + '</div>' + '<div class="post-reactions">Reactions: ' + post.reaction_count + '</div>' +
'</div>'; '</div>';