Skip to content

Commit

Permalink
debounce input for search
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed May 4, 2024
1 parent a9c2b06 commit ccfba62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShockOsc/Ui/Pages/Dash/Tabs/DebugTab.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<MudText>OSC Parameters</MudText>
<MudDivider/>
<MudCheckBox Class="option-width option-checkbox-height" @bind-Value="_showAllAvatarParams" Label="Show all avatar parameters"/>
<MudTextField Variant="Variant.Outlined" @bind-Value="_search" Label="Search Parameter"/>
<MudTextField DebounceInterval="50" Variant="Variant.Outlined" @bind-Value="_search" Label="Search Parameter"/>
<MudDivider/>
<br/>
@if (_showAllAvatarParams)
Expand Down

0 comments on commit ccfba62

Please sign in to comment.