We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2840e1a commit 7beb835Copy full SHA for 7beb835
2 files changed
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
## unreleased
4
- OIDC protected and public paths now respect the site prefix when it is defined.
5
+ - Fix: forms without submit or reset buttons no longer keep extra bottom spacing.
6
7
## 0.42.0 (2026-01-17)
8
sqlpage/templates/form.handlebars
@@ -9,7 +9,7 @@
9
{{/if}}
10
{{#if auto_submit}}data-auto-submit{{/if}}
11
>
12
- <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}}">
13
{{#if title}}
14
<h2 class="text-center mb-0">{{title}}</h2>
15
0 commit comments