Skip to content

Commit

Permalink
adding primiting cell not refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrasner committed Aug 3, 2023
1 parent 57bfd37 commit e5a5ace
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion object_database/web/content/src/CellHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,8 @@ class CellHandler {
const cell = this.activeCells[nodeId];
const data = cell.props;
data[event.data.name] = event.data.value;
this.updateCell(identity, {}, data)
this.updateCell(nodeId, {}, data);
cell.rebuildDomElement();
}
}
}
Expand Down

0 comments on commit e5a5ace

Please sign in to comment.