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

This commit is contained in:
Dayoung 2025-07-02 10:34:03 +09:00
parent f693062d96
commit 9c9ddd16b6
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ export default function Detail() {
</tr> </tr>
<tr> <tr>
<th></th> <th></th>
<td>{inquiryDetail?.regUserTelNo}</td> <td>{inquiryDetail?.regUserTelNo ? inquiryDetail?.regUserTelNo : '-'}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@ -178,7 +178,7 @@ export default function SurveySaleSubmitPopup() {
</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;">
-: -:
<span style="color: #417DDC;">${surveyDetail?.constructionPoint}</span> <span style="color: #417DDC;">${surveyDetail?.constructionPoint ?? ' - '}</span>
</p> </p>
<p> <p>
<a <a