update deps
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
2025-04-05 03:42:43 +00:00
parent 4cca4ee3b7
commit 32094221c2
86 changed files with 841 additions and 20819 deletions

View File

@ -9,17 +9,17 @@
phx-hook="CtrlEnter"
class="flex flex-col justify-start items-stretch space-y-4"
>
<%= text_input(f, :title,
{text_input(f, :title,
aria_label: gettext("title"),
class: "input input-primary",
phx_debounce: 300,
phx_hook: "SanitizeTitles",
placeholder: gettext("title"),
required: true
) %>
<%= error_tag(f, :title) %>
)}
{error_tag(f, :title)}
<%= textarea(f, :content,
{textarea(f, :content,
id: "step-form-content",
class: "input input-primary h-64 min-h-64",
phx_update: "ignore",
@ -32,14 +32,14 @@
"use [[[note-slug]]] to link to a note or use [[context-slug]] to link to a context or [pipeline-slug] to link to a pipeline"
),
phx_debounce: 300
) %>
<%= error_tag(f, :content) %>
)}
{error_tag(f, :content)}
<div class="flex justify-center items-stretch space-x-4">
<%= submit(dgettext("actions", "save"),
{submit(dgettext("actions", "save"),
phx_disable_with: gettext("saving..."),
class: "mx-auto btn btn-primary"
) %>
)}
</div>
</.form>
</div>