@devops-flow/devops-flow-pipeline-detail 0.0.49 → 0.0.50

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/es/index.js CHANGED
@@ -76,7 +76,7 @@ var isEn = lang === 'en_US';
76
76
  var setConfigDefault = function setConfigDefault(config) {
77
77
  var keys = ['number', 'triggerMsg']; // 编号,触发信息
78
78
  return keys.reduce(function (pre, cur) {
79
- pre[cur] = typeof config[cur] === 'boolean' ? config[cur] : true;
79
+ pre[cur] = config && typeof config[cur] === 'boolean' ? config[cur] : true;
80
80
  return pre;
81
81
  }, {});
82
82
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devops-flow/devops-flow-pipeline-detail",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "description": "flow 流水线详情",
5
5
  "medusaName": "rdc-tb-cd-assets",
6
6
  "main": "dist/PipelineFlowDetail.js",