Skip to content

Commit

Permalink
Merge pull request #141 from fastcampus-711/develop
Browse files Browse the repository at this point in the history
feat: 게시글 작성 placeholder 수정
  • Loading branch information
alreadyme24 authored Jun 11, 2024
2 parents 6185655 + 5d6f2b7 commit c7a94bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/edit/EditComplain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export default function EditComplain() {
<td className="py-8">
<textarea
name="content"
placeholder="내용을 입력해주세요 (최대 2000자)"
placeholder={`게시글 작성시, 욕설, 비방, 허위사실 유포 등의 내용이 포함되어 있을 경우, 명예훼손으로 법적 처벌이 이루어질 수 있습니다.\n서로의 의견을 경청하고 존중해주시기 바랍니다. (최대 2,000자)`}
maxLength={2000}
value={content}
onChange={e => setContent(e.target.value)}
Expand Down
2 changes: 1 addition & 1 deletion components/edit/EditFrees.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default function EditFrees() {
<td className="py-8">
<textarea
name="content"
placeholder="내용을 입력해주세요 (최대 2000자)"
placeholder={`게시글 작성시, 욕설, 비방, 허위사실 유포 등의 내용이 포함되어 있을 경우, 명예훼손으로 법적 처벌이 이루어질 수 있습니다. \n서로의 의견을 경청하고 존중해주시기 바랍니다. (최대 2,000자)`}
maxLength={2000}
value={content}
onChange={e => setContent(e.target.value)}
Expand Down
2 changes: 1 addition & 1 deletion components/edit/EditMarkets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default function EditMarkets() {
className="py-8">
<textarea
name="content"
placeholder="내용을 입력해주세요 (최대 2000자)"
placeholder="신뢰할 수 있는 거래를 위해 브랜드, 모델명, 구매시기, 하자 유무 등 상품 설명을 자세히 입력해주세요. (최대 2000자)"
maxLength={2000}
value={content}
onChange={e => setContent(e.target.value)}
Expand Down
2 changes: 1 addition & 1 deletion components/edit/EditQna.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export default function EditQna() {
<td className="py-8">
<textarea
name="content"
placeholder="내용을 입력해주세요 (최대 150자)"
placeholder={`게시글 작성시, 욕설, 비방, 허위사실 유포 등의 내용이 포함되어 있을 경우, 명예훼손으로 법적 처벌이 이루어질 수 있습니다.\n서로의 의견을 경청하고 존중해주시기 바랍니다. (최대 150자)`}
maxLength={150}
value={content}
onChange={e => setContent(e.target.value)}
Expand Down

0 comments on commit c7a94bf

Please sign in to comment.