fix: 글 수정 maxLength 오류 수정
This commit is contained in:
parent
320a4a75f6
commit
fb0d17c2b9
@ -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}
|
||||
|
@ -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}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user