Skip to content

Commit 9bf3fd5

Browse files
committed
🐛 [fix] : 카테고리 추가 인풋 길이제한 늘리기
1 parent c2217d8 commit 9bf3fd5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/task-management/CategoryAdd.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
placeholder-text="카테고리명을 입력해주세요"
2828
:label-name="`${categoryStep}차 카테고리명`"
2929
:is-invalidate="errorMessage.categoryName"
30-
:limitLength="10" />
30+
:limitLength="30" />
3131
<RequestTaskInput
3232
v-model="categoryForm.code"
3333
placeholder-text="카테고리의 작업코드를 입력해주세요"
@@ -47,7 +47,7 @@
4747
<textarea
4848
class="w-full h-32 border border-border-1 px-4 py-2 resize-none focus:outline-none rounded"
4949
:value="categoryForm.descriptionExample"
50-
:maxlength="200"
50+
:maxlength="100"
5151
:placeholder="'부가설명 템플릿을 작성해주세요'"
5252
@input="onValueChange">
5353
</textarea>

0 commit comments

Comments
 (0)