CALS 구분 보기/숨기기 동작 관련 수정 - 전체보기 체크박스 해제 후 선택한 다음 하나씩 모든 보기 체크박스를 해제하면 모든 체크박스 해제 시 시추공이 다 표시됨

main
유지인 2026-02-02 14:17:06 +09:00
parent 284ba53325
commit c424e5f2bd
1 changed files with 4 additions and 0 deletions

View File

@ -377,6 +377,10 @@ function hole_layerOnOff() {
} else {
returnValue = returnValue + "N";
}
// 마지막 반복이고, 아직 Y가 하나도 없을 때
if (i === 33 && !returnValue.includes("Y")) {
returnValue += "Y";
}
}
console.log(returnValue);