콘텐츠 댓글 수정 오류

- 댓글 수정 모드 상태에서 다른 댓글 쓰기 혹은 삭제 등의 액션을 해서 댓글 수의 변화가 있을 때 내 글이 아닌 다른 사람의 글이 수정 모드로 보이는 버그 수정
This commit is contained in:
Yu Sung
2025-03-18 22:52:39 +09:00
parent d5e1acb1c3
commit dfe17c7797
5 changed files with 45 additions and 34 deletions

View File

@@ -120,11 +120,11 @@ struct AudioContentCommentItemView: View {
.frame(width: 35, height: 35)
.padding(6.7)
.onTapGesture {
isModeModify = false
hideKeyboard()
if commentItem.comment != comment {
modifyComment(commentItem.id, comment)
}
isModeModify = false
}
}
.background(Color.gray23)
@@ -188,6 +188,7 @@ struct AudioContentCommentItemView: View {
.font(.custom(Font.medium.rawValue, size: 14))
.foregroundColor(Color.gray77)
.onTapGesture {
isModeModify = false
onClickDelete(commentItem.id)
isShowPopupMenu = false
}