fix(性能测试): 修复引用场景时相同文件名没去重的问题
--bug=1014054 --user=刘瑞斌 【性能测试】github#14669性能测试引用两个以上带证书的场景保存报错 https://www.tapd.cn/55049933/s/1182097 Closes #14669
This commit is contained in:
parent
c1c5879eb7
commit
fccd0424ec
|
@ -156,6 +156,10 @@ export default {
|
|||
});
|
||||
// csv 处理
|
||||
d.fileMetadataList?.forEach(f => {
|
||||
// 去掉重复的文件
|
||||
if (this.fileList.filter(item => item.name === f.name).length > 0) {
|
||||
return;
|
||||
}
|
||||
this.fileList.push(f);
|
||||
this.tableData.push({
|
||||
name: f.name,
|
||||
|
|
Loading…
Reference in New Issue