Skip to content

Commit

Permalink
Sorting by Websites not working in product grid in backoffice #20511
Browse files Browse the repository at this point in the history
  • Loading branch information
XxXgeoXxX committed Feb 13, 2019
1 parent fa49579 commit 8170bd7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Magento\Framework\View\Element\UiComponentFactory;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Magento\Store\Model\StoreManagerInterface;
use \Magento\Framework\DB\Helper;
use Magento\Framework\DB\Helper;

/**
* @api
Expand Down Expand Up @@ -42,17 +42,17 @@ class Websites extends \Magento\Ui\Component\Listing\Columns\Column
* @param ContextInterface $context
* @param UiComponentFactory $uiComponentFactory
* @param StoreManagerInterface $storeManager
* @param Helper $resourceHelper
* @param array $components
* @param array $data
* @param Helper $resourceHelper
*/
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
StoreManagerInterface $storeManager,
Helper $resourceHelper = null,
array $components = [],
array $data = []
array $data = [],
Helper $resourceHelper = null
) {
parent::__construct($context, $uiComponentFactory, $components, $data);
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
Expand Down

0 comments on commit 8170bd7

Please sign in to comment.