Skip to content

Commit

Permalink
fix: fixed issue where the backend module would error if static TypoS…
Browse files Browse the repository at this point in the history
…cript was not available in page tree (#128)
  • Loading branch information
benjasper committed Sep 17, 2024
1 parent f6f82b1 commit c136757
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Removed faulty posting default date field values (#154)
- Fixed issue where the backend module would error if static TypoScript was not available in page tree (#128)

## [3.0.5] - 2024-08-30 Bugfix Release

Expand Down
10 changes: 0 additions & 10 deletions Configuration/TypoScript/setup.typoscript
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,3 @@ config.tx_extbase.persistence.classes {
}
}

# Module configuration
module.tx_jobapplications < plugin.tx_jobapplications
module.tx_jobapplications {
view {
layoutRootPaths.0 = EXT:jobapplications/Resources/Private/Layouts/Backend/
layoutRootPaths.1 = {$module.tx_jobapplications_backend.view.layoutRootPath}
}
}


File renamed without changes.
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Backend/Dashboard.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html data-namespace-typo3-fluid="true" xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers" xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers">
<f:layout name="Default"/>
<f:layout name="Backend"/>

<f:section name="Content">
<div class="dashboard">
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Backend/ListApplications.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html data-namespace-typo3-fluid="true" xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers">
<f:layout name="Default"/>
<f:layout name="Backend"/>
<f:section name="Content">
<div class="listapplication-wrapper">
<div class="top">
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Backend/Settings.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html data-namespace-typo3-fluid="true" xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers">
<f:layout name="Default"/>
<f:layout name="Backend"/>

<f:section name="Content">
<div class="settings">
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Backend/ShowApplication.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html data-namespace-typo3-fluid="true" xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers" xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers">
<f:layout name="Default"/>
<f:layout name="Backend"/>
<f:section name="Content">
<div class="showapplication-wrapper">
<h1>
Expand Down

0 comments on commit c136757

Please sign in to comment.