ru.coon 2.7.21 → 2.7.23

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,15 @@
1
+ # Version 2.7.23, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e1fd5ef91937dab7196de70f1ec48895dd0e036f)
2
+ * ## Fixes
3
+ * <span style='color:red'>fix ReportLookupCombo</span> ([389b88], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/389b882bb57e27db1acebb9196f4ebf533794200))
4
+
5
+ * update: CHANGELOG.md ([1da73b], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/1da73b648a1493be777199ffce8a8fe0dac63998))
6
+
7
+ # Version 2.7.22, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/44122a0527f68e71a21175a4e497157b5ac18b3b)
8
+ * ## Fixes
9
+ * <span style='color:red'>fix function call</span> ([70df27], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/70df27e80e9798056bb565c1683b09ee2f3d0ce5))
10
+
11
+ * update: CHANGELOG.md ([ba2358], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ba23583139793904a15e6c2b8b1c52a7e62b4939))
12
+
1
13
  # Version 2.7.21, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0dee5b7b0d46ea4aa23fc331e69d4fa4700cc767)
2
14
  * update: CHANGELOG.md ([d3afa0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d3afa0140acb4f44e51200cb0577051436e419f0))
3
15
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "2.7.21",
7
+ "version": "2.7.23",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -97,10 +97,12 @@ Ext.define('Coon.report.component.ReportLookupCombo', {
97
97
  this._setValue = this.setValue.bind(this);
98
98
  this.setValue = function(value) {
99
99
  this._setValue(value);
100
- if (!this._inited && value) {
101
- this.loadReportData(value);
100
+ if (!this._inited) {
101
+ this._inited = true;// don't touch this
102
+ if (value) {
103
+ this.loadReportData(value);
104
+ };
102
105
  }
103
- this._inited = true;
104
106
  };
105
107
  if (Ext.isObject(this.defaultParameters)) {
106
108
  this.setFilterDefaults(this.defaultParameters);
@@ -196,7 +196,7 @@ Ext.define('Coon.report.component.settings.ReportPropertiesGridController', {
196
196
  const commandClass = Ext.ClassManager.getByAlias('command.' + commandName).prototype;
197
197
 
198
198
  const commandProperties = typeof commandClass.commandProperties === 'function' ?
199
- commandClass.commandProperties :
199
+ commandClass.commandProperties() :
200
200
  [];
201
201
 
202
202
  const descriptions = commandProperties.reduce((acc, property) => {
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '2.7.21',
3
+ number: '2.7.23',
4
4
  });