From 228d27bd856abffd871285dd6ddadeaeaa423d83 Mon Sep 17 00:00:00 2001 From: Pooja Bhaumik Date: Mon, 27 Jan 2025 18:48:17 +0530 Subject: [PATCH] Fix grammar --- .../user-interactivity/forms/form-widgets/text-field.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/control-flow/user-interactivity/forms/form-widgets/text-field.md b/docs/resources/control-flow/user-interactivity/forms/form-widgets/text-field.md index 97764b74..8885f05d 100644 --- a/docs/resources/control-flow/user-interactivity/forms/form-widgets/text-field.md +++ b/docs/resources/control-flow/user-interactivity/forms/form-widgets/text-field.md @@ -538,7 +538,7 @@ Enabling this feature will refresh the page whenever a user types into TextField Here's an example of displaying the TextField value in a Text widget in realtime: 1. Select the TextField widget, move to the **Properties Panel** **> Additional Properties >** enable the **Update Page On Change** property. -2. Also, set the **Update Delay (ms)**, which determines the time after the user has stopped typing for the page to refresh its UI. For example, if the *Update Delay (ms)* value is set to 2000 ms (2 seconds), the page will update 2 seconds after the user is done typing. For this example, let's set it to 0 ms. +2. Also, set the **Update Delay (ms)**, which specifies the time interval after the user stops typing before the page refreshes its UI. For example, if the *Update Delay (ms)* value is set to 2000 ms (2 seconds), the page will update 2 seconds after the user stops typing. For this example, let's set it to 0 ms. 3. Now select the **Text** widget, move to the **Properties Panel > Set from Variable > Widget State > [TextFieldName]**. Tip: You can also set the default value to be displayed until the user has entered any text. :::tip