고객센터 연락처 미노출 조건 추가 - 값 공백 시 th:if로 처리
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

This commit is contained in:
Rinjae
2026-08-19 16:46:58 +09:00
parent 5299352235
commit a13279a777
@@ -31,7 +31,9 @@
<option th:each="site : ${relatedSites}" th:value="${site.url}" th:text="${site.name}"></option>
</select>
</div>
<p class="footer-contact" th:text="'고객센터 ' + ${customerCenterContact}">고객센터 1588-3388</p>
<!-- 고객센터 연락처: PortalProperty(Portal/customer.center.contact). 값이 공백이면 미노출 -->
<p class="footer-contact" th:if="${#strings.trimmed(customerCenterContact) != ''}"
th:text="'고객센터 ' + ${customerCenterContact}">고객센터 1588-3388</p>
</div>
</div>
</div>