Skip to content

Commit

Permalink
feat: Signature Write Page 타이틀 200자 제한, 내용 1500자 제한 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
dydals3440 committed Feb 16, 2024
1 parent 502ba53 commit 8e6fb51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pages/signature/write/Editor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export default function Editor({ setSelectedHeader }) {
placeholder="제목"
value={title || ''}
onChange={handleTitleChange}
maxLength="200"
/>
<S.Divider />
<S.ContentContainer>
Expand Down
1 change: 1 addition & 0 deletions src/pages/signature/write/Page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export default function Page({ image, content }) {
handleContentChange(e);
handleResizeHeight();
}}
maxLength="1500"
/>
</S.PageContainer>
);
Expand Down

0 comments on commit 8e6fb51

Please sign in to comment.