fix: 数字范围默认值导致仪表板空白

This commit is contained in:
fit2cloud-chenyw 2022-02-05 22:29:56 +08:00
parent 6b4200cf09
commit 2499f1c354

View File

@ -70,7 +70,7 @@ class NumberRangeServiceImpl extends WidgetService {
getParam(element) {
if (element.options.value && element.options.value.length > 0) {
const values = this.element.options.value
const values = element.options.value
const min = values[0]
let max = null
if (values.length > 1) {