From c10fcc8869788392b75bbb43e80e2ef4a8ef0627 Mon Sep 17 00:00:00 2001 From: Allan Zhang Date: Thu, 3 Nov 2022 21:44:08 -0400 Subject: [PATCH] Fix link to keyed lists --- website/docs/tutorial/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tutorial/index.mdx b/website/docs/tutorial/index.mdx index c77a956b9c9..00ac50b948f 100644 --- a/website/docs/tutorial/index.mdx +++ b/website/docs/tutorial/index.mdx @@ -248,7 +248,7 @@ let videos = videos.iter().map(|video| html! { ``` :::tip -Keys on list items helps Yew keep track of which items have changed in the list, resulting in faster re-renders. [It is always recommended to use keys in lists](/concepts/html/lists#keyed-lists). +Keys on list items helps Yew keep track of which items have changed in the list, resulting in faster re-renders. [It is always recommended to use keys in lists](/concepts/html/lists.mdx#keyed-lists). ::: And finally we need to replace the hardcoded list of videos with the `Html` we created from data: