Skip to content

Commit

Permalink
🎬 (DataTable): the css 'editable-cell' was set on the wrong element (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Jul 25, 2024
1 parent 7a6e565 commit 29dcc6e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@
Align = DataTableHeaderAlign.Start,
Sortable = false,
Value = nameof(Dessert.Name),
Class = "editable-cell",
CellClass = "editable-cell",
CellRender = e => EditableDessertName(e),
},
new()
{
Text = "Calories",
Value = nameof(Dessert.Calories),
Class = "editable-cell",
CellClass = "editable-cell",
Width = 150,
CellRender = e => EditableCalories(e)
},
Expand Down

0 comments on commit 29dcc6e

Please sign in to comment.