Skip to content

Commit

Permalink
[BUGFIX] Broken IndexQueueModule.css asset path in backend
Browse files Browse the repository at this point in the history
The path should use EXT: syntax.
That way TYPO3 can properly handle the file and add version numbers and
check for existence.

Resolves: #3897
  • Loading branch information
DanielSiepmann committed Nov 28, 2023
1 parent d3130ac commit b49c09d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<f:layout name="Backend/WithPageTree"/>

<f:section name="Main">
<f:be.pageRenderer includeCssFiles="{0: '{f:uri.resource(path:\'StyleSheets/Backend/IndexQueueModule.css\')}'}" includeRequireJsModules="{0:'TYPO3/CMS/Solr/FormModal'}"/>
<f:be.pageRenderer includeCssFiles="{0: 'EXT:solr/Resources/Public/StyleSheets/Backend/IndexQueueModule.css'}" includeRequireJsModules="{0:'TYPO3/CMS/Solr/FormModal'}"/>

<h1>Index Queue</h1>
<p class="lead"><f:translate key="solr.backend.index_queue_module.description" /></p>
Expand Down

0 comments on commit b49c09d

Please sign in to comment.