From 2f7f6af26a40fb9981c99d131cf021c71f24fb99 Mon Sep 17 00:00:00 2001
From: ThibG <thib@sitedethib.com>
Date: Mon, 18 Feb 2019 13:37:13 +0100
Subject: [PATCH] =?UTF-8?q?Hide=20domain=20filter=20in=20admin=20page=20wh?=
=?UTF-8?q?en=20=E2=80=9Clocal=E2=80=9D=20filter=20is=20active=20(#10074)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Since the “domain” field is ignored in this case.
---
app/views/admin/accounts/index.html.haml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml
index 91fddadf81..345f74f909 100644
--- a/app/views/admin/accounts/index.html.haml
+++ b/app/views/admin/accounts/index.html.haml
@@ -26,8 +26,9 @@
= hidden_field_tag key, params[key]
- %i(username by_domain display_name email ip).each do |key|
- .input.string.optional
- = text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")
+ - unless key == :by_domain && params[:remote].blank?
+ .input.string.optional
+ = text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")
.actions
%button= t('admin.accounts.search')
--
GitLab