We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1951f07 commit 08c61acCopy full SHA for 08c61ac
app/code/Magento/Ui/view/base/web/js/form/element/abstract.js
@@ -118,8 +118,8 @@ define([
118
119
this._super();
120
121
- scope = this.dataScope;
122
- name = scope.split('.').length > 1 ? scope.split('.').slice(1) : scope.split('.');
+ scope = this.dataScope.split('.');
+ name = scope.length > 1 ? scope.slice(1) : scope;
123
124
valueUpdate = this.showFallbackReset ? 'afterkeydown' : this.valueUpdate;
125
0 commit comments