mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 19:42:56 +08:00
fix(图表): 修复热力图缺少颜色字段时,图表显示报错的问题
This commit is contained in:
parent
1c1d57daf6
commit
dd2d760902
@ -627,7 +627,7 @@ const checkFieldIsAllowEmpty = (allField?) => {
|
||||
if (
|
||||
!value['allowEmpty'] &&
|
||||
value['limit'] &&
|
||||
view.value?.[key]?.length < parseInt(value['limit'])
|
||||
(!view.value?.[key] || view.value?.[key]?.length < parseInt(value['limit']))
|
||||
) {
|
||||
showEmpty.value = true
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user