ru.coon 2.7.73 → 2.7.74

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Version 2.7.74, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0ad505a03bce73983ba14ee55f9132c91d9c9762)
2
+ * ## Fixes
3
+ * <span style='color:red'>fix executeComponentDoInit parameters initialization</span> ([454f38], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/454f389375cdb2280091eb41c1ecd0f0e0150f3f))
4
+
5
+ * update: CHANGELOG.md ([637d18], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/637d18bb19b23d867325ba60ad80c1e7e383c8ff))
6
+
1
7
  # Version 2.7.73, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/023f7c5fbe1cc722907329839a07e74212ec9153)
2
8
  * ## Fixes
3
9
  * <span style='color:red'> HT-9894 CharacteristicGridEditor getModifiedRecords</span> ([df27e0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/df27e0d0006e93994a0bf407df47d3c7e1ea0add))
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "2.7.73",
7
+ "version": "2.7.74",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
package/src/Function.js CHANGED
@@ -491,7 +491,8 @@ Ext.define('Coon.Function', {
491
491
  return result;
492
492
  },
493
493
 
494
- executeComponentDoInit: function(component, parameters = {}) {
494
+ executeComponentDoInit: function(component, parameters) {
495
+ parameters = Ext.isObject(parameters) ? parameters : {};
495
496
  if (!component) {
496
497
  Coon.log.error('Coon.Function.executeComponentDoInit error: component cant be empty');
497
498
  return false;
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '2.7.73',
3
+ number: '2.7.74',
4
4
  });