Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Block/Adminhtml/Shopcart/Abandoned/Grid.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(
) {
$this->jsonSerializer = $jsonSerializer;
$this->configHelper = $configHelper;
parent::__construct($context, $backendHelper, $quotesFactory, $data);
parent::__construct($context, $backendHelper, $quotesFactory, null, null, $data);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bro, you need to check the parent. You have to pass $urlDecoder and $parameters, not null. It will not break because parent constructs them anyways in case of null. Still better to keep the flexibility and do it correctly.

}

/**
Expand Down