summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2024-02-02 06:46:05 +0300
committerAndrew Dolgov <[email protected]>2024-02-02 06:46:05 +0300
commita56e935deb9dcc9287117fba9208f7a25d4c81e5 (patch)
treed6b1e00f095a3c15b9e2f62e61ab0d3aca7bcca5
parent3d70fb21f7250d8d8dec61961c6a39740f2920df (diff)
fix unfunctional rss icon in grouped-by-feed heading
-rwxr-xr-xjs/Headlines.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 6a439f744..a7e0f897a 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -468,7 +468,8 @@ const Headlines = {
if (headlines.vfeed_group_enabled && hl.feed_title && this.vgroup_last_feed != hl.feed_id) {
const vgrhdr = `<div data-feed-id='${hl.feed_id}' class='feed-title'>
- <div class="pull-right">${Feeds.renderIcon(hl.feed_id, hl.has_icon)}</div>
+ <div class="pull-right icon-feed" title="${App.escapeHtml(hl.feed_title)}"
+ onclick="Feeds.open({feed:${hl.feed_id}})">${Feeds.renderIcon(hl.feed_id, hl.has_icon)}</div>
<a class="title" href="#" onclick="Feeds.open({feed:${hl.feed_id}})">${hl.feed_title}</a>
<a class="catchup" title="${__('mark feed as read')}" onclick="Feeds.catchupFeedInGroup(${hl.feed_id})" href="#">
<i class="icon-done material-icons">done_all</i>