Skip to content

Commit

Permalink
fix: 공연 어드민 뷰 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Sep 26, 2024
1 parent 6c22a08 commit 618ec89
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h2 class="text-center">추가할 공연 정보</h2>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" th:id="'artist_' + ${artist.id}" th:name="artistIds" th:value="${artist.id}">
<label class="form-check-label" th:for="'artist_' + ${artist.id}">
<b>가수:</b> [[${artist.koreanName}]]
<b>가수:</b> [[${artist.name}]]
</label>
</div>
</th:block>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h2 class="text-center">공연 수정</h2>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" th:id="'artist_' + ${artist.id}" th:name="artistIds" th:value="${artist.id}">
<label class="form-check-label" th:for="'artist_' + ${artist.id}">
<b>가수:</b> [[${artist.koreanName}]]
<b>가수:</b> [[${artist.name}]]
</label>
</div>
</th:block>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2 class="text-center">공연 목록</h2>
</td>
<td>
<ul>
<li th:each="artist : ${show.artistKoreanNameResponses}" th:text="${artist.koreanName}">아티스트</li>
<li th:each="artist : ${show.artistNameResponses}" th:text="${artist.name}">아티스트</li>
</ul>
</td>
<td>
Expand Down

0 comments on commit 618ec89

Please sign in to comment.