Skip to content

Commit

Permalink
fix: πŸ› Update value nutrition table quantity #1671 (#1689)
Browse files Browse the repository at this point in the history
* fix: πŸ› Set light mode on the scan page

* fix: πŸ› Update nutrition table quantity

βœ… Closes: #1671
  • Loading branch information
Pualoo authored Apr 28, 2022
1 parent 50fb0b0 commit 04df4f5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ class _TableCellWidgetState extends State<TableCellWidget> {
);
}).toList(),
onChanged: (KnowledgePanelTableColumn? selectedColumn) {
widget.cell.columnGroup!.currentColumn = selectedColumn;
setState(() {
widget.cell.columnGroup!.currentColumn = selectedColumn;
});
int i = 0;
for (final KnowledgePanelTableColumn column
in widget.tableElement.columns) {
Expand Down

0 comments on commit 04df4f5

Please sign in to comment.