We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19dba44 + 6cf0da0 commit 68c7cd4Copy full SHA for 68c7cd4
Changelog.md
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
and this project adheres to [Semantic Versioning](http://semver.org/).
6
7
## [Unreleased]
8
+### Fixed
9
+ - DataMap: cursor jumping when entering value in ng-formio 3.x
10
+
11
### Added
12
- Ability to provide HTML attributes for components inputs
13
src/components/datamap/DataMap.js
@@ -265,7 +265,9 @@ export default class DataMapComponent extends NestedComponent {
265
setValue(value) {
266
const changed = this.hasChanged(value, this.dataValue);
267
this.dataValue = value;
268
- this.buildRows();
+ if (changed) {
269
+ this.buildRows();
270
+ }
271
return changed;
272
}
273
0 commit comments