Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## unreleased
- OIDC protected and public paths now respect the site prefix when it is defined.
- Fix: forms without submit or reset buttons no longer keep extra bottom spacing.

## 0.42.0 (2026-01-17)

Expand Down
2 changes: 1 addition & 1 deletion sqlpage/templates/form.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{/if}}
{{#if auto_submit}}data-auto-submit{{/if}}
>
<fieldset class="form-fieldset mb-1">
<fieldset class="form-fieldset {{#if (or (and (ne validate '') (not auto_submit)) reset)}}mb-1{{else}}mb-0{{/if}}">
{{#if title}}
<h2 class="text-center mb-0">{{title}}</h2>
{{/if}}
Expand Down