Skip to content

Commit f5d4665

Browse files
committed
fix: 审计风险-事件列表展示异常 --bug=155108931
1 parent 2df03b5 commit f5d4665

File tree

2 files changed

+597
-549
lines changed

2 files changed

+597
-549
lines changed

src/frontend/src/components/edit-box/tag.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@
109109
if (Array.isArray(props.data)) {
110110
return props.data;
111111
}
112-
113-
return props.data.split(',');
112+
console.log('props', props);
113+
return props.data === undefined ? [] : props.data.split(',');
114114
});
115115
const renderData = computed(() => {
116116
// 1. 如果是真正的数组,直接连接

0 commit comments

Comments
 (0)