Skip to content

Commit

Permalink
increased max size of reference search to 1000 (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Dec 16, 2024
1 parent b11d09b commit 24031d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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());

// search and lookups
Expand Down

0 comments on commit 24031d0

Please sign in to comment.