default display tier settings to -1 when the object property editing form is first presented during property creation. They are currently defaulting to -1, but later in the process.
This commit is contained in:
parent
c01ffc278f
commit
c7e406f22d
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ public class ObjectProperty extends Property implements Comparable<ObjectPropert
|
|||
|
||||
private String domainEntitySortField = null;
|
||||
private String domainEntitySortDirection = null;
|
||||
private String domainDisplayTier = null;
|
||||
private String domainDisplayTier = "-1";
|
||||
private int domainDisplayLimit = 5;
|
||||
private String domainQuickEditJsp = null;
|
||||
|
||||
|
@ -67,7 +67,7 @@ public class ObjectProperty extends Property implements Comparable<ObjectPropert
|
|||
|
||||
private String rangeEntitySortField = null;
|
||||
private String rangeEntitySortDirection = null;
|
||||
private String rangeDisplayTier = null;
|
||||
private String rangeDisplayTier = "-1";
|
||||
private int rangeDisplayLimit = 5;
|
||||
private String rangeQuickEditJsp = null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue