You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My LVN template includes a <.form for={@comment_form}> with with a <TextEditor> for users to post a comment. This works except that the form isn't cleared after I submit it, even though I explicitly reset that comment_form.
def handle_event("save", %{"comment" => comment_params}, socket) do
# code to save the comment...
another_comment_changeset =
%Comment{} |> Discussions.change_comment()
{:noreply,
socket
|> assign(:comment_form, to_form(another_comment_changeset))}
end
Library Version
0.4.0-rc.0
Xcode Version
16.2
Swift Version
6.0.3
On which device or simulator are you running into the problem?
iPad
Target Device Operating System Version
18.2
Relevant log output
No response
The text was updated successfully, but these errors were encountered:
What happened?
My LVN template includes a
<.form for={@comment_form}>
with with a<TextEditor>
for users to post a comment. This works except that the form isn't cleared after I submit it, even though I explicitly reset thatcomment_form
.It works fine in the HTML version.
The relevant part of the
.neex
looks like this:And the
handle_event("save", ...)
then does this:Library Version
0.4.0-rc.0
Xcode Version
16.2
Swift Version
6.0.3
On which device or simulator are you running into the problem?
iPad
Target Device Operating System Version
18.2
Relevant log output
No response
The text was updated successfully, but these errors were encountered: