ru.coon 2.7.72 → 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,15 @@
|
|
|
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
|
+
|
|
7
|
+
# Version 2.7.73, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/023f7c5fbe1cc722907329839a07e74212ec9153)
|
|
8
|
+
* ## Fixes
|
|
9
|
+
* <span style='color:red'> HT-9894 CharacteristicGridEditor getModifiedRecords</span> ([df27e0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/df27e0d0006e93994a0bf407df47d3c7e1ea0add))
|
|
10
|
+
|
|
11
|
+
* update: CHANGELOG.md ([2c73c2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/2c73c2ab42fea4504bc5c0008a55ec5a520155b1))
|
|
12
|
+
|
|
1
13
|
# Version 2.7.72, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/3f8a4ef311ec96763166dbe8024b538f84ef3059)
|
|
2
14
|
* ## Fixes
|
|
3
15
|
* <span style='color:red'> BFL-15221 NoteEditorCreator save char</span> ([f84fbe], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f84fbe281e0bc8a0b63f1ebc0e7f99ef6bc13703))
|
package/package.json
CHANGED
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;
|
|
@@ -458,7 +458,8 @@ Ext.define('Coon.common.component.editor.CharacteristicGridEditor', {
|
|
|
458
458
|
|
|
459
459
|
getModifiedRecords() {
|
|
460
460
|
return this.getStore().getRange().filter(
|
|
461
|
-
(record) => record.isNew || record.get('isDeleted') || record.get('markToCommit')
|
|
461
|
+
(record) => record.isNew || record.get('isDeleted') || record.get('markToCommit') ||
|
|
462
|
+
record.getModified('value') || record.getModified('valueDescription')
|
|
462
463
|
);
|
|
463
464
|
},
|
|
464
465
|
|
package/src/version.js
CHANGED