diff --git a/core/core-frontend/src/custom-component/v-query/Select.vue b/core/core-frontend/src/custom-component/v-query/Select.vue index a085d004e1..be71a7d72f 100644 --- a/core/core-frontend/src/custom-component/v-query/Select.vue +++ b/core/core-frontend/src/custom-component/v-query/Select.vue @@ -640,11 +640,11 @@ onMounted(() => { }) const tagWidth = computed(() => { - return Math.min(getCustomWidth() / 3, 40) + 'px' + return Math.min((getCustomWidth() - 60) / 2, 50) + 'px' }) const tagTextWidth = computed(() => { - return Math.min(getCustomWidth() / 3, 50) - 25 + 'px' + return Math.min((getCustomWidth() - 60) / 2 - 25, 40) + 'px' }) defineExpose({ @@ -741,9 +741,9 @@ defineExpose({