From 76b7d1e5a8dbff4b9f779433d3e4fa6f0b0714a6 Mon Sep 17 00:00:00 2001 From: Lucas Rosa Galego Date: Sun, 15 May 2022 14:31:58 -0400 Subject: [PATCH] Update text.md Remove inaccurate description. Not sure if this was a limitation on a previous version. but calling this without a callback function just worked in the tutorial page --- site/content/tutorial/06-bindings/14-component-this/text.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/site/content/tutorial/06-bindings/14-component-this/text.md b/site/content/tutorial/06-bindings/14-component-this/text.md index e389dbbacf..e562c165e7 100644 --- a/site/content/tutorial/06-bindings/14-component-this/text.md +++ b/site/content/tutorial/06-bindings/14-component-this/text.md @@ -15,9 +15,7 @@ Just as you can bind to DOM elements, you can bind to component instances themse Now we can programmatically interact with this component using `field`. ```html - ``` - -> Note that we can't do `{field.focus}` since field is undefined when the button is first rendered and throws an error.