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 4d26093 commit 1623a22Copy full SHA for 1623a22
app/code/Magento/Ui/view/base/web/js/form/element/abstract.js
@@ -119,7 +119,7 @@ define([
119
this._super();
120
121
scope = this.dataScope;
122
- name = scope.split('.').slice(1);
+ name = (scope.split('.').length > 1) ? scope.split('.').slice(1) : scope.split('.');
123
124
valueUpdate = this.showFallbackReset ? 'afterkeydown' : this.valueUpdate;
125
0 commit comments