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 1623a22 commit 1951f07Copy full SHA for 1951f07
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('.').length > 1) ? scope.split('.').slice(1) : scope.split('.');
+ name = scope.split('.').length > 1 ? scope.split('.').slice(1) : scope.split('.');
123
124
valueUpdate = this.showFallbackReset ? 'afterkeydown' : this.valueUpdate;
125
0 commit comments