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 e06a9bf021..cdb52fcfea 100644 --- a/core/core-frontend/src/custom-component/v-query/Select.vue +++ b/core/core-frontend/src/custom-component/v-query/Select.vue @@ -639,11 +639,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({ @@ -740,9 +740,9 @@ defineExpose({