PL-8840 User can't open param in filter editor if this param was created after performing RelatedAction

This commit is contained in:
Daniil Tsarev 2017-03-27 17:23:20 +04:00
parent 892944eb4b
commit 0ab4074785

View File

@ -55,6 +55,8 @@ public class ListEditorHelper {
return Datatypes.get(DoubleDatatype.NAME).format(v);
case ENUM:
return AppBeans.get(Messages.class).getMessage((Enum) v);
case UUID:
return Datatypes.get(UUIDDatatype.NAME).format(v);
default:
throw new IllegalStateException("Unknown item type");
}