Overrides Drupal\views\Plugin\views\HandlerBase::init().
Make sure that no result area handlers are set to be shown when the result is empty.
Overrides HandlerBase::init
public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
parent::init($view, $display, $options);
if ($this->areaType == 'empty') {
$this->options['empty'] = TRUE;
}
}