소스 검색

update word limit

tianyunperfect 5 년 전
부모
커밋
9615fef292
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/pages/Memory/components/UpdateForm.tsx

+ 1 - 1
src/pages/Memory/components/UpdateForm.tsx

@@ -77,7 +77,7 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
               message.info("你是不是没有输入文字?");
               return;
             }
-            if (formValues.front.length >= 3000 || formValues.back.length >= 3000) {
+            if (formValues.front.length >= 2000 || formValues.back.length >= 2000) {
               message.info("文字太长了,减少一些吧!");
               return;
             }