Add support for the "collapse" input type

This commit is contained in:
Oliver 2026-03-01 21:40:59 -07:00
parent bc286ce06a
commit 1d43be188e
4 changed files with 22 additions and 2 deletions

View file

@ -1,4 +1,4 @@
<div class="dialog-content">
<div class="input-list">
{{#if description}}
<p>
{{ description }}

View file

@ -0,0 +1,12 @@
<details>
<summary>
{{ summary }}
</summary>
<div class="input-list">
{{#each inputs as | i |}}
{{> (concat (systemFilePath "templates/Ask/inputs/" ) i.type ".hbs") i}}
{{else}}
{{ content }}
{{/each}}
</div>
</details>