ru.coon 2.7.21 → 2.7.22
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.22, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/44122a0527f68e71a21175a4e497157b5ac18b3b)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>fix function call</span> ([70df27], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/70df27e80e9798056bb565c1683b09ee2f3d0ce5))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([ba2358], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ba23583139793904a15e6c2b8b1c52a7e62b4939))
|
|
6
|
+
|
|
1
7
|
# Version 2.7.21, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0dee5b7b0d46ea4aa23fc331e69d4fa4700cc767)
|
|
2
8
|
* update: CHANGELOG.md ([d3afa0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d3afa0140acb4f44e51200cb0577051436e419f0))
|
|
3
9
|
|
package/package.json
CHANGED
|
@@ -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