Skip to content

Commit

Permalink
refactor: 업종 간격 고정 및 텍스트 클릭시 체크 기능 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonjerry committed Oct 4, 2023
1 parent 8d2a25e commit 66c3cdd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/resources/templates/notices.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@
<tr>
<th scope="row">업종선택</th>
<td colspan="5">
<div class="form-check form-check-inline" th:each="businessType:${businessTypes}">
<div class="form-check form-check-inline" style="width: 240px" th:each="businessType:${businessTypes}">
<input class="form-check-input" name="businessType"
th:checked="${noticeFilterRequest.businessTypes != null && noticeFilterRequest.businessTypes.contains(businessType)}"
th:value="${businessType.code}" type="checkbox">
<label class="form-check-label" th:text="${businessType.name}"></label>
th:id="businessType + ${businessType.code}" th:value="${businessType.code}" type="checkbox">
<label class="form-check-label" th:for="businessType + ${businessType.code}"
th:text="${businessType.name}"></label>
</div>
</td>
</tr>
Expand Down

0 comments on commit 66c3cdd

Please sign in to comment.