Browse Source

Fix custom emojis index (#5006)

pull/4/head
Yamagishi Kazutoshi 6 years ago
committed by Eugen Rochko
parent
commit
1664e52cbb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/admin/custom_emojis_controller.rb

+ 1
- 1
app/controllers/admin/custom_emojis_controller.rb View File

@ -3,7 +3,7 @@
module Admin
class CustomEmojisController < BaseController
def index
@custom_emojis = CustomEmoji.where(uri: nil)
@custom_emojis = CustomEmoji.where(domain: nil)
end
def new

Loading…
Cancel
Save