File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ The Blazor TreeView component allows for searching and filtering of TreeView nod
198198 else
199199 {
200200 DataSource = GetData();
201- // Filter all the nodes of the Serached ID.
201+ // Filter all the nodes of the Searched ID.
202202 List<Listdata> filteredValues = DataSource.FindAll(e => e.Name.ToString().StartsWith(eventArgs.Value));
203203 List<Listdata> filteredDataSource = new List<Listdata>();
204204 Listdata data = new Listdata();
@@ -222,7 +222,7 @@ The Blazor TreeView component allows for searching and filtering of TreeView nod
222222 filteredDataSource.Add(data);
223223 }
224224 }
225- // Update the TreeView based on the searched ID vallue .
225+ // Update the TreeView based on the searched ID value .
226226 ListDataSource = filteredDataSource;
227227 isFiltered = true;
228228 }
You can’t perform that action at this time.
0 commit comments