fix: 글 수정 maxLength 오류 수정

This commit is contained in:
정기영 2024-08-13 15:56:05 +09:00
parent 320a4a75f6
commit fb0d17c2b9
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export default function EditArticle({ topic, title, prevTitle, prevContent, onSu
<label className={styles.label}>제목</label>
<input
type="text"
maxLength={200}
maxLength={50}
className={styles.titleInput}
placeholder="제목을 입력하세요"
value={articleTitle}

View File

@ -44,7 +44,7 @@ export default function EditFreeboard({ topic, title, prevContent, prevTitle, on
<label className={styles.label}>제목</label>
<input
type="text"
maxLength={200}
maxLength={50}
className={styles.titleInput}
placeholder={'제목을 입력하세요'}
value={articleTitle}

View File

@ -44,7 +44,7 @@ export default function EditQna({ topic, title, prevContent, prevTitle, onSubmit
<label className={styles.label}>제목</label>
<input
type="text"
maxLength={200}
maxLength={50}
className={styles.titleInput}
placeholder={'제목을 입력하세요'}
value={articleTitle}