Merge branch 'RED-8415' into 'master'
RED-8415: Fixed 500 when fileAttribute label length is exacly 255 chars Closes RED-8415 See merge request redactmanager/persistence-service!339
This commit is contained in:
commit
cd171e22f0
@ -18,9 +18,9 @@ public class FileAttributeConfig {
|
|||||||
|
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
@Size(max = 255)
|
@Size(max = 254)
|
||||||
private String csvColumnHeader;
|
private String csvColumnHeader;
|
||||||
@Size(max = 255)
|
@Size(max = 254)
|
||||||
private String label;
|
private String label;
|
||||||
private boolean primaryAttribute;
|
private boolean primaryAttribute;
|
||||||
private boolean editable;
|
private boolean editable;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user