Skip to content

Commit

Permalink
docs(AutoComplete): fix typo (#2113)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsvetomir-Hr committed May 17, 2024
1 parent 1791f10 commit abc82e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/autocomplete/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ The <a href="https://www.telerik.com/blazor-ui/autocomplete" target="_blank">Bla
User input: @AutoCompleteValue
<br />
<TelerikAutoComplete Data="@Suggestions"
@bind-Value="@AutoComplete"
@bind-Value="@AutoCompleteValue"
Placeholder="Enter your role (can be free text)"
ClearButton="true" />
@code{
//Current value is null (no item is selected) which allows the Placeholder to be displayed.
private string AutoComplete { get; set; }
private string AutoCompleteValue { get; set; }
private List<string> Suggestions { get; set; } = new List<string> {
"Manager", "Developer", "QA", "Technical Writer", "Support Engineer", "Sales Agent", "Architect", "Designer"
Expand Down

0 comments on commit abc82e5

Please sign in to comment.