PortalPropertyService: PropertyValue null 필터 추가

This commit is contained in:
Rinjae
2026-08-21 11:06:11 +09:00
parent 1b8f7a8ef1
commit 99dac967bc
@@ -30,6 +30,7 @@ public class PortalPropertyService extends AbstractDataService<PortalPropertyGro
.orElse(new PortalPropertyGroup());
return portalPropertyGroup.getPortalProperties().stream()
.filter(portalProperty -> portalProperty.getPropertyValue() != null)
.collect(Collectors.toMap(
portalProperty -> portalProperty.getId().getPropertyName(),
PortalProperty::getPropertyValue,