Skip to content

Commit

Permalink
Merge branch 'master' into warnings-as-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikStreek authored Sep 16, 2024
2 parents df7963d + 28bcd96 commit 8904333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mindwendel_web/live/idea_live/form_component.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

<div class="form-group">
<%= label(f, gettext("Username")) %>
<%= text_input(f, :username, class: "form-control") %>
<%= text_input(f, :username, class: "form-control", phx_debounce: 300) %>
<%= if message = f.errors[:username] do %>
<span><%= translate_error(message) %></span>
<% end %>
</div>

<div class="form-group">
<%= label(f, :body, gettext("Your idea")) %>
<%= textarea(f, :body, class: "form-control") %>
<%= textarea(f, :body, class: "form-control", phx_debounce: 300) %>
<%= if message = f.errors[:body] do %>
<span><%= translate_error(message) %></span>
<% end %>
Expand Down

0 comments on commit 8904333

Please sign in to comment.