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 f4e0d7f commit 29a4e8dCopy full SHA for 29a4e8d
app/code/Magento/Ui/view/base/web/js/form/element/url-input.js
@@ -133,7 +133,7 @@ define([
133
createChildUrlInputComponent: function (value) {
134
var elementConfig;
135
136
- if (_.isUndefined(this.linkedElementInstances[value])) {
+ if (!_.isEmpty(value) && _.isUndefined(this.linkedElementInstances[value])) {
137
elementConfig = this.urlTypes[value];
138
layout([elementConfig]);
139
this.linkedElementInstances[value] = this.requestModule(elementConfig.name);
0 commit comments