fix: 데이터 빈 값일 경우 하이픈(-) 적용

This commit is contained in:
Dayoung 2025-07-02 14:36:00 +09:00
parent fcb24042de
commit 2fb4591ea0
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export default function Detail() {
</tr> </tr>
<tr> <tr>
<th></th> <th></th>
<td>{isBuilderOrPartner ? '-' : inquiryDetail?.storeNm}</td> <td>{isBuilderOrPartner ? '-' : inquiryDetail?.storeNm ?? ' - '}</td>
</tr> </tr>
<tr> <tr>
<th>E-mail</th> <th>E-mail</th>

View File

@ -171,7 +171,7 @@ export default function SurveySaleSubmitPopup() {
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 3px;"> <p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 3px;">
- -
<span style="color: #417DDC;"> <span style="color: #417DDC;">
${surveyDetail?.store} (${surveyDetail?.storeId}) ${surveyDetail?.store} (${surveyDetail?.storeId ?? ' - '})
</span> </span>
</p> </p>
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 15px;"> <p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 15px;">