Fix being unable to search by domain (#17832)

lolsob-rspec
Gomasy 2022-03-21 12:45:58 +09:00 committed by GitHub
parent a0777e8681
commit 9b27b6023f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
= hidden_field_tag key, params[key]
- %i(username by_domain display_name email ip).each do |key|
- unless key == :by_domain && params[:remote].blank?
- unless key == :by_domain && params[:origin] != 'remote'
.input.string.optional
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")