fix(测试跟踪): 用例评审标签显示问题

--bug=1021788 --user=李玉号 【测试跟踪】用例评审-标签长度较长时-多个标签会被合成一个显示
https://www.tapd.cn/55049933/s/1325929
This commit is contained in:
shiziyuan9527 2023-01-11 13:53:04 +08:00 committed by lyh
parent 21f02f7cd2
commit 3c0c6afddb
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
:label="$t('api_test.automation.tag')"
min-width="200px">
<template v-slot:default="scope">
<span v-if="scope.row.tags.length === 1">
<span v-if="scope.row.tags && scope.row.tags.length === 1">
<ms-tag
v-for="(name, index) in scope.row.tags"
:key="index"
@ -19,7 +19,7 @@
/>
</span>
<el-tooltip class="item" effect="dark" placement="top" :enterable="false" v-else>
<div v-html="scope.row.tags.join('')" slot="content"></div>
<div v-html="scope.row.tags ? scope.row.tags.join(''): ''" slot="content"></div>
<div class="oneLine">
<ms-tag
v-for="(name, index) in scope.row.tags"