fix: 데이터 빈 값일 경우 하이픈(-) 적용
This commit is contained in:
parent
fcb24042de
commit
2fb4591ea0
@ -44,7 +44,7 @@ export default function Detail() {
|
||||
</tr>
|
||||
<tr>
|
||||
<th>販売店</th>
|
||||
<td>{isBuilderOrPartner ? '-' : inquiryDetail?.storeNm}</td>
|
||||
<td>{isBuilderOrPartner ? '-' : inquiryDetail?.storeNm ?? ' - '}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>E-mail</th>
|
||||
|
||||
@ -171,7 +171,7 @@ export default function SurveySaleSubmitPopup() {
|
||||
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 3px;">
|
||||
-販売店名:
|
||||
<span style="color: #417DDC;">
|
||||
${surveyDetail?.store} (${surveyDetail?.storeId})
|
||||
${surveyDetail?.store} (${surveyDetail?.storeId ?? ' - '})
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 15px;">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user