Skip to content

Commit 1be9694

Browse files
committed
[doc] HxAutosuggest.Delay default
1 parent aac68f7 commit 1be9694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Havit.Blazor.Components.Web.Bootstrap/Forms/Autosuggests/HxAutosuggest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class HxAutosuggest<TItem, TValue> : HxInputBase<TValue>, IInputWithSize,
7979
protected int MinimumLengthEffective => MinimumLength ?? GetSettings()?.MinimumLength ?? GetDefaults().MinimumLength ?? throw new InvalidOperationException(nameof(MinimumLength) + " default for " + nameof(HxAutosuggest) + " has to be set.");
8080

8181
/// <summary>
82-
/// The debounce delay in milliseconds.
82+
/// The debounce delay in milliseconds. Default is 300 ms.
8383
/// </summary>
8484
[Parameter] public int? Delay { get; set; }
8585
protected int DelayEffective => Delay ?? GetSettings()?.Delay ?? GetDefaults().Delay ?? throw new InvalidOperationException(nameof(Delay) + " default for " + nameof(HxAutosuggest) + " has to be set.");

0 commit comments

Comments
 (0)