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.
- package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +2 -2
- package/package/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +2 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +2 -2
- package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +2 -0
- package/static/styles/channelizatioon.scss +4 -1
- package/package/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.check.vue +0 -191
- package/package/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.syncOper.vue +0 -331
|
@@ -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
|
}
|