Skip to content

Commit

Permalink
Fix bug where cell value is repeated from other cell when a column is…
Browse files Browse the repository at this point in the history
… added (#263)
  • Loading branch information
timbze authored Mar 23, 2021
1 parent 3a7bc87 commit 44eabe0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions GridBlazor/Pages/GridCellComponent.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public partial class GridCellComponent<T>
protected override void OnParametersSet()
{
_componentType = Column.ComponentType;
_cell = default;
_cellRender = default;
if (_componentType != null)
_cellRender = CreateComponent(_sequence, GridComponent, _componentType, Column, Item,
RowId, false, new VariableReference(ChildComponent));
Expand Down

0 comments on commit 44eabe0

Please sign in to comment.