Skip to content

Commit

Permalink
[BUGFIX] Removed non-existing / unnecessary CSS file within PageOverv…
Browse files Browse the repository at this point in the history
…iewWidget
  • Loading branch information
Riny van Tiggelen committed Jun 29, 2023
1 parent 34da50e commit 0c3f9f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ We will follow [Semantic Versioning](http://semver.org/).
## UNRELEASED
### Fixed
- Content Security Policy issues in CMS12 by adding extra parameter within BackendYoastConfig and removing unnecessary inline code within FocusKeywordAnalysis.html
- Removed loading of `extended-list-widget.min.css` within `PageOverviewWidget`

## 9.0.0 June 12, 2023
### Breaking
Expand Down
10 changes: 1 addition & 9 deletions Classes/Widgets/PageOverviewWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
namespace YoastSeoForTypo3\YoastSeo\Widgets;

use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
use TYPO3\CMS\Dashboard\Widgets\AdditionalCssInterface;
use TYPO3\CMS\Dashboard\Widgets\WidgetConfigurationInterface;
use TYPO3\CMS\Dashboard\Widgets\WidgetInterface;
use TYPO3\CMS\Fluid\View\StandaloneView;
use YoastSeoForTypo3\YoastSeo\Widgets\Provider\PageProviderInterface;

class PageOverviewWidget implements WidgetInterface, AdditionalCssInterface
class PageOverviewWidget implements WidgetInterface
{
protected WidgetConfigurationInterface $configuration;
protected PageProviderInterface $dataProvider;
Expand Down Expand Up @@ -41,13 +40,6 @@ public function __construct(
);
}

public function getCssFiles(): array
{
return [
'EXT:yoast_seo/Resources/Public/CSS/extended-list-widget.min.css',
];
}

public function getOptions(): array
{
return [];
Expand Down

0 comments on commit 0c3f9f0

Please sign in to comment.