diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-07 17:08:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-07 17:08:30 +0200 |
commit | 94c54997cf6dc3bef2af67a070a61cc10595339c (patch) | |
tree | bffd958886fdd145c676af5bf78075e73fa1c4a1 /app/views | |
parent | 7a737c79cc06e931afef2eaebd971ea0324e0741 (diff) |
Fix trending tags returning less items than requested sometimes (#11513)
Add better sorting defaults to the hashtags admin UI Add "not reviewed" filter to hashtags admin UI
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/tags/index.html.haml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/admin/tags/index.html.haml b/app/views/admin/tags/index.html.haml index 5e4ee21f5..d994955ef 100644 --- a/app/views/admin/tags/index.html.haml +++ b/app/views/admin/tags/index.html.haml @@ -12,6 +12,7 @@ %strong= t('admin.tags.review') %ul %li= filter_link_to t('generic.all'), review: nil + %li= filter_link_to t('admin.tags.unreviewed'), review: 'unreviewed' %li= filter_link_to t('admin.tags.reviewed'), review: 'reviewed' %li= filter_link_to safe_join([t('admin.accounts.moderation.pending'), "(#{Tag.pending_review.count})"], ' '), review: 'pending_review' |