Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
open-in-view: false
hibernate:
ddl-auto: validate
show-sql: true
show-sql: false
database-platform: org.hibernate.dialect.MySQL8Dialect
properties:
hibernate:
Expand All @@ -92,8 +92,9 @@ jobs:
logging:
level:
root : INFO
org.hibernate.SQL: WARN
org.springframework : INFO
org.hibernate.SQL: OFF
org.hibernate.jdbc.bind : OFF
# org.hibernate.type.descriptor.sql: trace
# org.springframework.web.socket: DEBUG
# org.springframework.messaging: DEBUG
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/cd-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
open-in-view: false
hibernate:
ddl-auto: validate
show-sql: true
show-sql: false
database-platform: org.hibernate.dialect.MySQL8Dialect
properties:
hibernate:
Expand All @@ -92,8 +92,9 @@ jobs:
logging:
level:
root : INFO
org.hibernate.SQL: WARN
org.springframework : INFO
org.hibernate.SQL: OFF
org.hibernate.jdbc.bind : OFF
# org.hibernate.type.descriptor.sql: trace
# org.springframework.web.socket: DEBUG
# org.springframework.messaging: DEBUG
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/templates/memberImageReview.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ <h4>
<small class="text-muted">이미지 #<span th:text="${iterStat.count}">1</span></small>
<div class="rejection-reason">
<textarea class="rejection-reason-input"
th:id="'code-reason-' + ${image.id}"
th:id="'face-reason-' + ${image.id}"
rows="15"
style="width: 100%; resize: vertical;"
placeholder="거절 사유를 입력하세요"></textarea>
Expand All @@ -232,13 +232,13 @@ <h4>
<i class="bi bi-code-slash me-2"></i>코드 이미지
<span class="selected-count" id="codeSelectedCount" style="display: none;">0</span>
</h4>

<div class="image-grid" th:if="${not #lists.isEmpty(codeImages)}">
<div class="image-card"
<div class="image-card"
th:each="image, iterStat : ${codeImages}"
th:data-image-id="${image.id}"
th:data-type="code">
<input type="checkbox"
<input type="checkbox"
class="image-checkbox code-checkbox"
th:id="'code-' + ${image.id}"
th:data-image-id="${image.id}">
Expand Down