Commit 79b730c3ff6b7eaaff0a0dbb2c3914d274a96dc0

Authored by xp.Huang
2 parents 2f870d87 0540cea6

Merge branch 'main_dev' into 'main'

Main dev

See merge request yunteng/thingskit-scada!233
... ... @@ -90,7 +90,7 @@ export class DataDynamicEffectHandler {
90 90 node.classList.add(ActAnimationName.VISIBLE)
91 91 node.classList.remove(ActAnimationName.HIDDEN)
92 92 })
93   - this.nodeUtils.updateCellValue(cell, record?.title ? record.title : latestValue)
  93 + record?.title && this.nodeUtils.updateCellValue(cell, record?.title)
94 94 }
95 95 else if (type === ActRangListItemTypeEnum.HIDDEN) {
96 96 nodeEl.forEach((node) => {
... ...
... ... @@ -27,7 +27,6 @@ export class MessageHandler {
27 27
28 28 const { commandSource } = telemetrySubscriber
29 29 const { dataType } = commandSource
30   -
31 30 if (dataType === DataSourceTypeEnum.DATASOURCE)
32 31 this.updateDataSource(commandSource, message)
33 32 else if (dataType === DataSourceTypeEnum.ACT)
... ...