ru.coon 2.7.72 → 2.7.73
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.73, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/023f7c5fbe1cc722907329839a07e74212ec9153)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'> HT-9894 CharacteristicGridEditor getModifiedRecords</span> ([df27e0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/df27e0d0006e93994a0bf407df47d3c7e1ea0add))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([2c73c2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/2c73c2ab42fea4504bc5c0008a55ec5a520155b1))
|
|
6
|
+
|
|
1
7
|
# Version 2.7.72, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/3f8a4ef311ec96763166dbe8024b538f84ef3059)
|
|
2
8
|
* ## Fixes
|
|
3
9
|
* <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
|
@@ -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