Skip to content

Commit 07b2483

Browse files
MAGETWO-50412: [GITHUB] Issues with adding groups on attribute set creation page (#3607)
1 parent e346437 commit 07b2483

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/Ui/view/adminhtml/web/templates/modal/modal-prompt-content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</label>
1414
<% } %>
1515
<div class="admin__field-control">
16-
<input type="text" data-role="prompt-field" id="prompt-field-<%- data.id %>" class="admin__control-text" <%= inputAttr %>/>
16+
<input type="text" data-role="promptField" id="prompt-field-<%- data.id %>" class="admin__control-text" <%= inputAttr %>/>
1717
</div>
1818
</div>
1919
</fieldset>

app/code/Magento/Ui/view/base/web/js/modal/prompt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ define([
1818
options: {
1919
modalClass: 'prompt',
2020
promptContentTmpl: promptContentTmpl,
21-
promptField: '[data-role="prompt-field"]',
21+
promptField: '[data-role="promptField"]',
2222
attributesForm: {},
2323
attributesField: {},
2424
value: '',

app/code/Magento/Ui/view/base/web/templates/modal/modal-prompt-content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</label>
1414
<% } %>
1515
<div class="control">
16-
<input type="text" data-role="prompt-field" id="prompt-field-<%- data.id %>" class="input-text" <%= inputAttr %>/>
16+
<input type="text" data-role="promptField" id="prompt-field-<%- data.id %>" class="input-text" <%= inputAttr %>/>
1717
</div>
1818
</div>
1919
</fieldset>

0 commit comments

Comments
 (0)