style: 데이터 빈 값일 경우 하이픈(-) 적용
This commit is contained in:
parent
f693062d96
commit
9c9ddd16b6
@ -56,7 +56,7 @@ export default function Detail() {
|
||||
</tr>
|
||||
<tr>
|
||||
<th>お問い合わせ</th>
|
||||
<td>{inquiryDetail?.regUserTelNo}</td>
|
||||
<td>{inquiryDetail?.regUserTelNo ? inquiryDetail?.regUserTelNo : '-'}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -178,7 +178,7 @@ export default function SurveySaleSubmitPopup() {
|
||||
</p>
|
||||
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 15px;">
|
||||
-施工店名:
|
||||
<span style="color: #417DDC;">${surveyDetail?.constructionPoint}</span>
|
||||
<span style="color: #417DDC;">${surveyDetail?.constructionPoint ?? ' - '}</span>
|
||||
</p>
|
||||
<p>
|
||||
<a
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user