aboutsummaryrefslogtreecommitdiff
path: root/app/views/subscription
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-07-31 13:20:48 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-31 13:20:48 +0200
commit5177a17c9fd4a92465b56f5486c233aa0b3504e2 (patch)
tree7dc00999e8e8e9a85bb783dae2b2190175935fd7 /app/views/subscription
parent18b8e91e3f29329d25d78fdf06376dee608936b3 (diff)
sidebar and subscription management (#4474)
Diffstat (limited to 'app/views/subscription')
-rw-r--r--app/views/subscription/index.phtml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml
index d2123a2ac..b546eea6d 100644
--- a/app/views/subscription/index.phtml
+++ b/app/views/subscription/index.phtml
@@ -49,11 +49,12 @@
$empty = $feed->nbEntries() == 0 ? ' empty' : '';
?>
<li class="item feed<?= $error, $empty, $feed->mute() ? ' mute' : '' ?>"
+ title="<?= $feed->inError() ? _t('sub.feed.error') : '' ?>"
draggable="true"
data-feed-id="<?= $feed->id() ?>">
<a class="configure open-slider" href="<?= _url('subscription', 'feed', 'id', $feed->id()) ?>"><?= _i('configure') ?></a>
<?php if (FreshRSS_Context::$user_conf->show_favicons): ?><img class="favicon" src="<?= $feed->favicon() ?>" alt="✇" loading="lazy" /><?php endif; ?>
- <?= $feed->name() ?>
+ <span class="item-title"><?= $feed->name() ?></span>
</li>
<?php
}