Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 2328833

Browse files
committed
MAGETWO-91570: [2.2.x] - [Github]Can not save attribute #5907
- test fix
1 parent d3e8f82 commit 2328833

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/Catalog/view/adminhtml/web/js

1 file changed

+2
-1
lines changed

app/code/Magento/Catalog/view/adminhtml/web/js/options.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ define([
186186
if (this.disabled) {
187187
return;
188188
}
189-
if (this.type == 'checkbox' || this.type == 'radio') {
189+
190+
if (this.type === 'checkbox' || this.type === 'radio') {
190191
if (this.checked) {
191192
optionsValues.push(this.name + '=' + jQuery(this).val());
192193
}

0 commit comments

Comments
 (0)