You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The global value is passed first, meaning that the store value is only used if the global value is null (which should never be the case). These should be swapped - the store value should be used, and if it is null, the global value should be used instead.
The text was updated successfully, but these errors were encountered:
Hi @aligent-lturner. Thank you for your report.
To speed up processing of this issue, make sure that you provided sufficient information.
Add a comment to assign the issue: @magento I am working on this
Preconditions (*)
Steps to reproduce (*)
Expected result (*)
configurable_options
should includeXS
as a size valueActual result (*)
XS
is not returned as a size value:The cause of the issue is the order variables are passed into the
getIfNullSql
function here -inventory/InventoryConfigurableProduct/Plugin/Model/ResourceModel/Attribute/IsEnabledOptionSelectBuilder.php
Line 85 in a032928
The global value is passed first, meaning that the store value is only used if the global value is null (which should never be the case). These should be swapped - the store value should be used, and if it is null, the global value should be used instead.
The text was updated successfully, but these errors were encountered: