File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/BootstrapBlazor/Components/Table Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 237237 }
238238 else
239239 {
240- <DynamicElement class =" @GetRowClassString(item, " table-row " )"
240+ <DynamicElement class =" @GetRowClassString(item, " table-row " )" @key = " item "
241241 TriggerContextMenu =" ContextMenuZone != null" OnContextMenu =" e => OnContextMenu(e, item)"
242242 @ontouchstart =" e => OnTouchStart(e, item)"
243243 @ontouchend =" OnTouchEnd"
675675 < / thead > ;
676676
677677 RenderFragment <TItem > RenderRow => item =>
678- @< DynamicElement TagName = " tr" class = " @GetRowClassString(item)"
678+ @< DynamicElement TagName = " tr" class = " @GetRowClassString(item)" @key = " item "
679679 TriggerContextMenu = " ContextMenuZone != null" OnContextMenu = " e => OnContextMenu(e, item)"
680680 @ontouchstart = " e => OnTouchStart(e, item)" @ontouchend = " OnTouchEnd"
681681 TriggerClick = " @(ClickToSelect || OnClickRowCallback != null)" OnClick = " () => ClickRow(item)"
You can’t perform that action at this time.
0 commit comments