diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-04-17 11:12:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 11:12:49 +0200 |
commit | 480d7c9478a9be3ac668b21402a269db41b10b18 (patch) | |
tree | 4504c4bedb85d0b933f8f14cef16fb2d216c6f22 /app/views/admin | |
parent | b3ceb3dcc4df62803aa967d7aecee686973a8996 (diff) |
Fix missing source strings and inconsistent lead text style in admin UI (#16052)
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/follow_recommendations/show.html.haml | 3 | ||||
-rw-r--r-- | app/views/admin/rules/index.html.haml | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/follow_recommendations/show.html.haml b/app/views/admin/follow_recommendations/show.html.haml index 1f050329a..5b949a165 100644 --- a/app/views/admin/follow_recommendations/show.html.haml +++ b/app/views/admin/follow_recommendations/show.html.haml @@ -4,8 +4,7 @@ - content_for :header_tags do = javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous' -.simple_form - %p.hint= t('admin.follow_recommendations.description_html') +%p= t('admin.follow_recommendations.description_html') %hr.spacer/ diff --git a/app/views/admin/rules/index.html.haml b/app/views/admin/rules/index.html.haml index 3b069d083..4fb993ad0 100644 --- a/app/views/admin/rules/index.html.haml +++ b/app/views/admin/rules/index.html.haml @@ -1,8 +1,9 @@ - content_for :page_title do = t('admin.rules.title') -.simple_form - %p.hint= t('admin.rules.description') +%p= t('admin.rules.description_html') + +%hr.spacer/ - if can? :create, :rule = simple_form_for @rule, url: admin_rules_path do |f| |