File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 2424 v-model =" description"
2525 :is-invalidate =" isInvalidate === 'description' ? isInvalidate : ''"
2626 :placeholderText =" '부가 설명을 입력해주세요'"
27- :limit-length =" 200 " />
27+ :limit-length =" 1000 " />
2828 <RequestTaskFileInput
2929 v-model =" file"
3030 :initFileArr =" initFileArr"
@@ -153,7 +153,6 @@ watch(category2, async newVal => {
153153
154154const handleSubmit = async () => {
155155 if (isSubmitting .value || isModalVisible .value ) return
156-
157156 if (! category1 .value ) {
158157 isInvalidate .value = ' category1'
159158 return
@@ -166,7 +165,7 @@ const handleSubmit = async () => {
166165 } else if (title .value .length > 30 ) {
167166 isInvalidate .value = ' title'
168167 return
169- } else if (description .value .length > 200 ) {
168+ } else if (description .value .length > 1000 ) {
170169 isInvalidate .value = ' description'
171170 return
172171 }
Original file line number Diff line number Diff line change 2424 v-model =" description"
2525 :is-invalidate =" isInvalidate === 'description' ? isInvalidate : ''"
2626 :placeholderText =" '부가 설명을 입력해주세요'"
27- :limit-length =" 200 " />
27+ :limit-length =" 1000 " />
2828 <RequestTaskFileInput
2929 v-model =" file"
3030 :isUploading =" isUploading" />
@@ -140,7 +140,7 @@ const handleSubmit = async () => {
140140 } else if (title .value .length > 30 ) {
141141 isInvalidate .value = ' title'
142142 return
143- } else if (description .value .length > 200 ) {
143+ } else if (description .value .length > 1000 ) {
144144 isInvalidate .value = ' description'
145145 return
146146 }
Original file line number Diff line number Diff line change 1515 <div v-if =" data.description" >
1616 <p class =" task-detail" >부가 설명</p >
1717 <p
18- class =" px-6 py-4 bg-primary2 rounded-lg font-normal min-h-[120px] whitespace-pre-wrap break-all" >
18+ class =" px-6 py-4 bg-primary2 rounded-lg font-normal min-h-[120px] max-h-[360px] whitespace-pre-wrap break-all" >
1919 {{ data.description }}
2020 </p >
2121 </div >
You can’t perform that action at this time.
0 commit comments