Skip to content

[Doc] Fix an RST syntax issue in LiveComponent #753

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

Merged
merged 1 commit into from
Mar 22, 2023
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
8 changes: 4 additions & 4 deletions src/LiveComponent/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2278,12 +2278,12 @@ The system doesn't handle every edge case, so here are some things to keep in mi
* If JavaScript changes an attribute on an element, that change is **preserved**.
* If JavaScript adds a new element, that element is **preserved**.
* If JavaScript removes an element that was originally rendered by the component,
that change will be **lost**: the element will be re-added during the next re-render.
that change will be **lost**: the element will be re-added during the next re-render.
* If JavaScript changes the text of an element, that change is **lost**: it will
be restored to the text from the server during the next re-render.
be restored to the text from the server during the next re-render.
* If an element is moved from one location in the component to another,
that change is **lost**: the element will be re-added in its original location
during the next re-render.
that change is **lost**: the element will be re-added in its original location
during the next re-render.

Skipping Updating Certain Elements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down