diff --git a/src/components/voteboard/voteCardCheck.vue b/src/components/voteboard/voteCardCheck.vue index aba7b20..540dff7 100644 --- a/src/components/voteboard/voteCardCheck.vue +++ b/src/components/voteboard/voteCardCheck.vue @@ -29,6 +29,7 @@ v-model="item.url" :is-essential="false" class="mb-1" + :maxlength="maxLength" />
@@ -62,6 +63,7 @@ const contentAlerts = ref([false, false]); const titleAlert = ref(false); const title = ref(''); const rink = ref(''); +const maxLength = ref(2000); const { itemList, addItem, removeItem } = voteCommon(true); const total = computed(() => props.total + itemList.value.length); const isSaveDisabled = computed(() => { diff --git a/src/components/voteboard/voteCardCheckList.vue b/src/components/voteboard/voteCardCheckList.vue index db6a8cc..d9f01a1 100644 --- a/src/components/voteboard/voteCardCheckList.vue +++ b/src/components/voteboard/voteCardCheckList.vue @@ -10,7 +10,12 @@ @change="handleChange" > {{ data.LOCVOTCON }} - + {{ data.LOCVOTLIK }} @@ -51,11 +56,15 @@ const handleChange = (event) => { } emit("update:selectedValues", updatedValues); }; +const preventLinkMove = (event) =>{ + event.preventDefault(); +}