Skip to content

Commit

Permalink
fix: 모집 마감 상태 스타일 미적용 해결 (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
fromitive committed Nov 28, 2024
1 parent e636135 commit 6feea20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
if (offering.status === 'IMMINENT') {
statusClass = 'status-imminent';
statusName = '마감임박';
} else if (offering.status === 'CLOSED') {
} else if (offering.status === 'CONFIRMED') {
statusClass = 'status-closed';
statusName = '모집마감';
} else if (offering.status === 'FULL') {
Expand Down

0 comments on commit 6feea20

Please sign in to comment.