diff options
| author | 2024-07-11 19:20:58 +0200 | |
|---|---|---|
| committer | 2024-07-11 19:20:58 +0200 | |
| commit | b92b80d12484695b762e85f32e6d23303e62a84b (patch) | |
| tree | 93f40cddb4a5802e893e55c5e18cad0f6aedb849 /app/layout | |
| parent | 0f395dad43bb0ab7c2e7ac5751776e9aeeb42036 (diff) | |
Fixing dropdown menu for labels (#6617)
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside_feed.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index a9705a296..719cf3660 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -66,8 +66,8 @@ ?> <li id="t_<?= $tag->id() ?>" class="item feed<?= FreshRSS_Context::isCurrentGet('t_' . $tag->id()) ? ' active' : '' ?>" data-unread="<?= $tag->nbUnread() ?>"> <div class="dropdown no-mobile"> - <div class="dropdown-target"></div> - <a class="dropdown-toggle"><?= _i('configure') ?></a> + <div id="dropdown-t-<?= $tag->id() ?>" class="dropdown-target"></div> + <a class="dropdown-toggle" href="#dropdown-t-<?= $tag->id() ?>"><?= _i('configure') ?></a> <?php /* tag_config_template */ ?> </div> <a class="item-title" data-unread="<?= format_number($tag->nbUnread()) ?>" href="<?= |
