fixed return of FancyValue

This commit is contained in:
Luca Frosini 2021-11-23 17:54:21 +01:00
parent aa881e7ea0
commit 4daca7c903
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public enum CMItemStatus {
}
public String getFancyValue() {
return value;
return fancyValue;
}
public static CMItemStatus getCMItemStatusFromValue(String value) {