fix(用例管理): 标签过长提示

--bug=1036294 --user=王旭 【用例管理】功能用例-标签长度大于64提示-提示信息排列不美观 https://www.tapd.cn/55049933/s/1480777
This commit is contained in:
WangXu10 2024-03-26 10:23:17 +08:00 committed by 刘瑞斌
parent e780c4035d
commit 068ae8b3cc
1 changed files with 3 additions and 3 deletions

View File

@ -26,10 +26,10 @@
<slot name="suffix"></slot>
</template>
</a-input-tag>
<span v-if="isError" class="ml-[1px] text-[12px] text-[rgb(var(--danger-6))]">
{{ t('common.tagInputMaxLength', { number: props.maxLength }) }}
</span>
</div>
<span v-if="isError" class="ml-[1px] text-[12px] text-[rgb(var(--danger-6))]">
{{ t('common.tagInputMaxLength', { number: props.maxLength }) }}
</span>
</template>
<script setup lang="ts">