1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-19 17:13:48 -05:00

11 lines
382 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Admin::DashboardHelper
def feature_hint(feature, enabled)
indicator = safe_join([enabled ? t('simple_form.yes') : t('simple_form.no'), fa_icon('power-off fw')], ' ')
class_names = enabled ? 'pull-right positive-hint' : 'pull-right neutral-hint'
safe_join([feature, content_tag(:span, indicator, class: class_names)])
end
end