I failed to account for glitch-soc's theming system when merging
from upstream.
before_action :authenticate_user!
before_action :set_filter
before_action :set_status_filters
+ before_action :set_pack
before_action :set_body_classes
PER_PAGE = 20
private
+ def set_pack
+ use_pack 'admin'
+ end
+
def set_filter
@filter = current_account.custom_filters.find(params[:filter_id])
end
-- content_for :header_tags do
- = javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'
-
- content_for :page_title do
= t('filters.statuses.index.title')
\-