Skip to content

Commit

Permalink
fixed max search result for workitemLinkController (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Dec 16, 2024
1 parent f3e45fa commit 9bdf51e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class WorkitemLinkController implements Serializable {

public static final String LINK_PROPERTY = "$workitemref";
public static final String LINK_PROPERTY_DEPRECATED = "txtworkitemref";
public static final int MAX_SEARCH_RESULT = 20;
public static final int MAX_SEARCH_RESULT = 1000;
public static Logger logger = Logger.getLogger(WorkitemLinkController.class.getName());

@EJB
Expand Down

0 comments on commit 9bdf51e

Please sign in to comment.