diff --git a/src/components/survey-sale/detail/DataTable.tsx b/src/components/survey-sale/detail/DataTable.tsx
index 7dfd5b1..3b29556 100644
--- a/src/components/survey-sale/detail/DataTable.tsx
+++ b/src/components/survey-sale/detail/DataTable.tsx
@@ -33,7 +33,11 @@ export default function DataTable({ surveyDetail }: { surveyDetail: SurveyBasicI
| 登録番号 |
- {surveyDetail?.srlNo} |
+ {surveyDetail?.srlNo?.startsWith('一時保存') ? (
+ {surveyDetail?.srlNo} |
+ ) : (
+ {surveyDetail?.srlNo} |
+ )}
| 登録日 |
diff --git a/src/styles/components/_sub.scss b/src/styles/components/_sub.scss
index 7a719db..a1d2de2 100644
--- a/src/styles/components/_sub.scss
+++ b/src/styles/components/_sub.scss
@@ -181,6 +181,9 @@
padding: 24px;
background-color: #fff;
border-top: 1px solid #ECECEC;
+ .sale-data-num {
+ color: #1259CB;
+ }
}
.sale-data-table{
width: 100%;