summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2022-10-26 16:01:28 +0200
committerjulian laplace <julescarbon@gmail.com>2022-10-26 16:01:28 +0200
commit3de2a5872fd0481568e918a1ea798b3f75ace610 (patch)
tree91d2e08c3f07bc0f866cfb22deecbc07afc78057 /public/assets/js/lib/views
parent8fe5a1cf652fd4bd0b737bd18605a8d4c4028407 (diff)
update keyword hover colors
Diffstat (limited to 'public/assets/js/lib/views')
-rw-r--r--public/assets/js/lib/views/stream/hootstream.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/stream/hootstream.js b/public/assets/js/lib/views/stream/hootstream.js
index f4e48c4..016c987 100644
--- a/public/assets/js/lib/views/stream/hootstream.js
+++ b/public/assets/js/lib/views/stream/hootstream.js
@@ -109,7 +109,7 @@ var HootStream = View.extend({
file_count: `${files.length || 0} f.`,
file_opacity: age_opacity * get_size_opacity(files.length),
comment_count: `${comments.length || 0} c.`,
- comment_opacity: age_opacity * get_size_opacity(files.length),
+ comment_opacity: age_opacity * get_size_opacity(comments.length),
}),
this.renderFiles(postedToday ? files : files.slice(0, 10)),
...this.renderHoots({ hoots: comments.slice(0, 1), tag: "first_post" }),