From db80cc237fdbf383f20da21bc129b7216063e1d5 Mon Sep 17 00:00:00 2001 From: hiren-wagento Date: Tue, 27 Feb 2018 15:42:41 +0530 Subject: [PATCH] Solved this issue : Drop down values are not showing in catalog product grid magento2 #13006 --- .../Eav/Model/ResourceModel/Entity/Attribute/Option.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php index cd2e985e57ee8..79c277dcb6a82 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php @@ -44,8 +44,8 @@ public function addOptionValueToCollection($collection, $attribute, $valueExpr) ); $valueExpr = $connection->getCheckSql( "{$optionTable2}.value_id IS NULL", - "{$optionTable1}.value", - "{$optionTable2}.value" + "{$optionTable1}.option_id", + "{$optionTable2}.option_id" ); $collection->getSelect()->joinLeft(