Skip to content

Commit

Permalink
fix: 명함 관리 CSS 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cussle committed Nov 15, 2024
1 parent de49fd6 commit 74a6f56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/devcard/devcard/chat/model/ChatRoom.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ChatRoom {
@JoinTable(
name = "chat_room_participants",
joinColumns = @JoinColumn(name = "chat_room_id"),
inverseJoinColumns = @JoinColumn(name = "member_id")
inverseJoinColumns = @JoinColumn(name = "member_id")
)
private List<Member> participants;
private LocalDateTime createdAt;
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/static/css/card/card-manage.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

/* 명함 리스트 섹션 */
.card-list-section {
height: 100%;
overflow-y: auto;
padding: 1rem;
display: grid;
Expand Down

0 comments on commit 74a6f56

Please sign in to comment.