Skip to content

Commit

Permalink
Merge branch 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
yc-2018 committed Oct 29, 2024
2 parents 4361c55 + ca12a20 commit 19314d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/MemoDrawer/compontets/FormModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const FormModal = ({isOpen, setOpen, data, reList, currentMemoType}) => {
<TextArea rows={14}
showCount
ref={textRef}
maxLength={2000}
maxLength={formData?.itemType === 5 ? 4000 : 2000}
value={formData?.content}
placeholder="请输入备忘内容"
onChange={e => setFormData({...formData, content: e.target.value})}
Expand Down

0 comments on commit 19314d7

Please sign in to comment.