Regression: feed block titles are empty when migrated from D7
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #2927014. -->
Reported by: [matslats](https://www.drupal.org/user/140053)
>>>
<p>Ideally the aggregator's blocks' titles would be inherited from the title of the feed.<br>
This matters less when creating a block manually because the author can just write a title.<br>
However migrated blocks have no title at all.</p>
<p>This would probably do it:<br>
On Drupal\aggregator\Plugin\Block\AggregatorFeedBlock</p>
<pre> public function label() {<br> if ($feed = $this->feedStorage->load($this->configuration['feed'])) {<br> return $feed->label();<br> }<br> return parent::label();<br> }</pre>
issue