File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/MudBlazor/Components/Autocomplete Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 3131 var item = _items [index ];
3232 bool is_selected = index == _selectedListItemIndex ;
3333 bool is_disabled = ! _enabledItemIndices .Contains (index );
34- <MudListItem @key =" @item" id =" @GetListItemId(index)" Disabled =" @(is_disabled)" OnClick =" @(async() => await ListItemOnClick(item))" OnClickHandlerPreventDefault =" true" Class =" @(is_selected ? " mud-selected-item " : " " )" >
34+ <MudListItem @key =" @item" id =" @GetListItemId(index)" Disabled =" @(is_disabled)" OnClick =" @(async() => await ListItemOnClick(item))" OnClickHandlerPreventDefault =" true" Class =" @(is_selected ? " mud-selected-item mud-primary-text mud-primary-hover " : " " )" >
3535 @if (ItemTemplate == null )
3636 {
3737 @GetItemString(item)
You can’t perform that action at this time.
0 commit comments