Skip to content

Commit

Permalink
Merge pull request #335 from SlamTalk/refactor/285-community-comment-…
Browse files Browse the repository at this point in the history
…write

댓글 관련 스타일 조정
  • Loading branch information
SwimmingRiver committed May 16, 2024
2 parents ae4f83d + 371c896 commit b417475
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/community/article/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const Page = () => {
onClose={CommentModal.onClose}
>
<ModalContent>
<ModalHeader>Error</ModalHeader>
<ModalHeader>알림</ModalHeader>
<ModalBody>댓글 수는 200자이하로 작성해주세요</ModalBody>
<ModalFooter>
<Button color="primary" onPress={CommentModal.onClose}>
Expand Down
2 changes: 1 addition & 1 deletion src/app/community/components/commentItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const CommentItem: React.FC<ICommentItemProps> = ({
{loginUserData?.id === userId && (
<div
aria-label="comment button group"
className="mr-2 mt-4 flex flex-col break-keep text-sm"
className="mr-2 mt-4 flex flex-col break-keep p-2 text-sm"
>
<button
onClick={handleEdit}
Expand Down
2 changes: 1 addition & 1 deletion src/app/community/write/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const Page = () => {
))}
<Modal isOpen={isOpen} onClose={onClose} placement="center">
<ModalContent>
<ModalHeader>이미지 참조 오류</ModalHeader>
<ModalHeader>알림</ModalHeader>
<ModalBody>{imageErrorMsg}</ModalBody>
<ModalFooter>
<Button color="primary" onPress={onClose}>
Expand Down

0 comments on commit b417475

Please sign in to comment.