Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in pic chat messages reading #1064

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reading/pic_chat_messages.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ When the LiveView first loads, it calls the `mount/3` function to assign a list

Then, `handle_params/3` delegates to the `apply_action/3` function to assign more data to the socket depending on whether or not the live action is `:index`, `:edit`, or `:new`:

* The `page_title` is different for each page. It controllers the text displayed at the top of the browser tab.
* The `page_title` is different for each page. It controls the text displayed at the top of the browser tab.
* The `:new` page creates a `Message` struct for the new message form.
* The `:edit` page retrieves an existing `Message` based on the `"id"` url param.
* `handle_info/3` receives a message from the form_component to insert a `Message` into the list of messages.
Expand Down
Loading