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.
2 parents 8829b4c + 98737ce commit 228eb93Copy full SHA for 228eb93
app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php
@@ -230,12 +230,10 @@ protected function _getJs($quantityFieldId, $inStockFieldId)
230
$.each(fieldsAssociations, function(generalTabField, advancedTabField) {
231
$('#' + generalTabField + ', #' + advancedTabField)
232
.bind('focus blur change keyup click', filler)
233
- .bind('keyup change blur', disabler);
234
- filler.call($('#' + generalTabField));
235
- filler.call($('#' + advancedTabField));
+ .bind('keyup change blur', disabler)
+ .trigger('change');
236
});
237
238
- disabler();
239
})
240
</script>
241
";
0 commit comments