Skip to content

Commit

Permalink
fix: settings template now supports craft 5.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcuzz authored Dec 4, 2024
1 parent 62524d9 commit 20407c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everyday/craft-incremental-static-regeneration",
"version": "1.3.1",
"version": "1.3.2",
"description": "A plugin that watches your entry changes and pings a URL of your choice",
"type": "craft-plugin",
"keywords": ["incremental", "static", "regeneration", "nextjs"],
Expand Down
4 changes: 2 additions & 2 deletions src/templates/cp/settings.twig
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
</tr>
</thead>
<tbody>
{% for section in craft.app.sections.allSections %}
{% for section in craft.app.getEntries().getEditableSections() %}
{% for entryType in section.entryTypes %}
<tr data-id="default">
<th>{{ section.type|ucfirst }}</th>
Expand All @@ -185,4 +185,4 @@
</tbody>
</table>
</div>
</div>
</div>

0 comments on commit 20407c8

Please sign in to comment.