You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2020/03/23 15:07:38 UTC

[syncope] branch master updated: [SYNCOPE-1542] completed fix on search after hitting enter button

This is an automated email from the ASF dual-hosted git repository.

andreapatricelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ff0172  [SYNCOPE-1542] completed fix on search after hitting enter button
5ff0172 is described below

commit 5ff01723c59a429dd7c761138505dd312e08cb58
Author: Andrea Patricelli <an...@apache.org>
AuthorDate: Mon Mar 23 16:07:19 2020 +0100

    [SYNCOPE-1542] completed fix on search after hitting enter button
---
 .../apache/syncope/client/console/panels/search/SearchClausePanel.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
index 8f1bc6b..90142a8 100644
--- a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
+++ b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
@@ -490,7 +490,7 @@ public class SearchClausePanel extends FieldPanel<SearchClause> {
         field.add(comparator);
 
         AjaxTextFieldPanel value = new AjaxTextFieldPanel(
-                "value", "value", new PropertyModel<>(searchClause, "value"), false);
+                "value", "value", new PropertyModel<>(searchClause, "value"), true);
         value.hideLabel().setOutputMarkupId(true);
         field.add(value);