openatc-components 0.0.108 → 0.0.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -877,10 +877,10 @@ export default {
877
877
  agentid: this.AgentId,
878
878
  data: ChannelizatonData
879
879
  }
880
- if (ChannelizatonData.crossMap.type === 'vectorgraph') {
880
+ if (ChannelizatonData.crossMap && ChannelizatonData.crossMap.type === 'vectorgraph') {
881
881
  ChannelizatonData.crossMap.imgfilesrc = ''
882
882
  }
883
- if (ChannelizatonData.crossMap.type === 'picture') {
883
+ if (ChannelizatonData.crossMap && ChannelizatonData.crossMap.type === 'picture') {
884
884
  ChannelizatonData.crossMap.svgstr = ''
885
885
  }
886
886
  saveChannelizatonChart(params).then(data => {
@@ -428,6 +428,8 @@ export default {
428
428
  if (data.maxflowsaturationthreshold !== undefined) {
429
429
  this.maxflowsaturationthreshold = data.maxflowsaturationthreshold
430
430
  }
431
+ this.handleDisabledMinflowOption(data.minflowsaturationthreshold)
432
+ this.handleDisabledMaxflowOption(data.maxflowsaturationthreshold)
431
433
  if (data.flip !== undefined) {
432
434
  this.flip = data.flip
433
435
  }