Skip to content

Commit ecb61d2

Browse files
committed
ACP2E-2909: dynamic-rows.js:658 Uncaught TypeError: dataRecord.slice while editing bundle products
- Fixed the issue.
1 parent 19def1f commit ecb61d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-user-defined-checkbox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ define([
2121
* @param {String} data
2222
*/
2323
onInputTypeChange: function (data) {
24-
data === 'checkbox' || data === 'multi' ?
24+
/*data === 'checkbox' || data === 'multi' ?
2525
this.visible(false) :
26-
this.visible(true);
26+
this.visible(true);*/
2727
}
2828
});
2929
});

0 commit comments

Comments
 (0)