From 8de592121727e92d007d83063b3a1e04a5b22a8d Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Fri, 15 Aug 2025 20:27:24 +0200 Subject: [PATCH] Call base class parameter set method --- app/MindWork AI Studio/Components/DebouncedTextField.razor.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Components/DebouncedTextField.razor.cs b/app/MindWork AI Studio/Components/DebouncedTextField.razor.cs index a1fd256b..fbf54c74 100644 --- a/app/MindWork AI Studio/Components/DebouncedTextField.razor.cs +++ b/app/MindWork AI Studio/Components/DebouncedTextField.razor.cs @@ -71,7 +71,7 @@ public partial class DebouncedTextField : MudComponentBase await base.OnInitializedAsync(); } - protected override void OnParametersSet() + protected override async Task OnParametersSetAsync() { // Only sync when the parent's parameter actually changed since the last change: if (this.Text != this.lastParameterText) @@ -82,6 +82,8 @@ public partial class DebouncedTextField : MudComponentBase this.debounceTimer.Stop(); this.debounceTimer.Start(); } + + await base.OnParametersSetAsync(); } #endregion