Merge pull request #13163 from AndriiLandiak/fix-cf-check

Fix getEntityDataInfo
This commit is contained in:
Viacheslav Klimov 2025-04-10 12:13:14 +03:00 committed by GitHub
commit 1fc2ecf070
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ public class EntityExportData<E extends ExportableEntity<? extends EntityId>> {
@JsonIgnore @JsonIgnore
public boolean hasCalculatedFields() { public boolean hasCalculatedFields() {
return calculatedFields != null; return calculatedFields != null && !calculatedFields.isEmpty();
} }
} }