Browse Source

Sort filters by “keyword or phrase” in Settings (#15050)

master
Mélanie Chauvel 3 years ago
committed by GitHub
parent
commit
0a8ab822e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/filters_controller.rb

+ 1
- 1
app/controllers/filters_controller.rb View File

@ -9,7 +9,7 @@ class FiltersController < ApplicationController
before_action :set_body_classes
def index
@filters = current_account.custom_filters
@filters = current_account.custom_filters.order(:phrase)
end
def new

Loading…
Cancel
Save