This is code was working fine with Magento 2.3, but is not with 2.3.3
Data.php
<?php
namespace Namespace\Module\Plugin\Search\Helper;
use Magento\Search\Model\QueryFactory;
class Data {
protected $dataHelper;
protected $view;
public function __construct(
\Namespace\Module\Helper\Data $helper,
\Magento\Framework\App\View $view
) {
$this->dataHelper = $helper;
$this->view = $view;
}
public function afterGetEscapedQueryText(
\Magento\Search\Helper\Data $subject,
$result
) {
$return = '';
if(QueryFactory::QUERY_VAR_NAME == "q") {
$return = " data-id='exampleid_p1'";
}
return $result . $return;
}
}
What has been changed in Magento 2.3.3 that I started facing this issue?