RED-8415: Fixed 500 when fileAttribute label length is exacly 255 chars

This commit is contained in:
Dominique Eifländer 2024-02-06 12:42:01 +01:00
parent 8540d5e865
commit 52551609e7

View File

@ -18,9 +18,9 @@ public class FileAttributeConfig {
private String id;
@Size(max = 255)
@Size(max = 254)
private String csvColumnHeader;
@Size(max = 255)
@Size(max = 254)
private String label;
private boolean primaryAttribute;
private boolean editable;