fix(测试跟踪): Tapd 编辑缺陷处理人显示异常

--bug=1027181 --user=陈建星 【测试跟踪】缺陷管理-集成了 tapd平台,编辑缺陷时Tapd 处理人内容显示有异常 https://www.tapd.cn/55049933/s/1386206
This commit is contained in:
jianxing 2023-06-26 15:09:00 +08:00 committed by jianxing
parent d70bcdca41
commit 3c763f6206
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ export default {
getTapdCurrentOwner() {
getTapdCurrentOwner(this.form.id).then(res => {
if (res && res.data && res.data[0]) {
this.form.tapdUsers = res.data[0].split(';');
this.form.tapdUsers = res.data[0].split(';').filter(i => i);
}
})
},