mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 05:22:13 +08:00
fix(图表): 多选复制忽略 null 值
This commit is contained in:
@@ -1035,7 +1035,7 @@ export function copyContent(s2Instance: SpreadSheet, event, fieldMeta) {
|
||||
if (metaObj) {
|
||||
fieldVal = metaObj.formatter(value)
|
||||
}
|
||||
if (fieldVal === undefined) {
|
||||
if (fieldVal === undefined || fieldVal === null) {
|
||||
fieldVal = ''
|
||||
}
|
||||
if (index !== arr.length - 1) {
|
||||
|
||||
Reference in New Issue
Block a user