diff --git a/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-site-index.jsp b/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-site-index.jsp
index 3def249..e7e212e 100644
--- a/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-site-index.jsp
+++ b/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-site-index.jsp
@@ -62,6 +62,9 @@
var content = '';
+ if (obj.datas.length < 1) {
+ content = '
| 조회된 건설현장이 없습니다. |
';
+ }
for( idx in obj.datas ) {
const constStartDate = obj.datas[idx].constStartDate == null ? '알 수 없음' : obj.datas[idx].constStartDate;
const constEndDate = obj.datas[idx].constEndDate == null ? '알 수 없음' : obj.datas[idx].constEndDate;
diff --git a/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-user-detail.jsp b/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-user-detail.jsp
index 3c6c6a8..21b942b 100644
--- a/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-user-detail.jsp
+++ b/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/construction-user-detail.jsp
@@ -62,7 +62,9 @@
dataListEle.innerHTML = '';
var content = '';
-
+ if (obj.datas.length < 1) {
+ content = '| 조회된 건설현장이 없습니다. |
';
+ }
for( idx in obj.datas ) {
const constStartDate = obj.datas[idx].constStartDate == null ? '알 수 없음' : obj.datas[idx].constStartDate;
const constEndDate = obj.datas[idx].constEndDate == null ? '알 수 없음' : obj.datas[idx].constEndDate;