Skip to content

Commit

Permalink
Fix formulas not automatically updating (#499)
Browse files Browse the repository at this point in the history
* Fix formulas not automatically updating
  • Loading branch information
HactarCE committed May 15, 2023
1 parent ec12668 commit 8c93ccb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quadratic-core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quadratic-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quadratic-core"
version = "0.1.5"
version = "0.1.6"
authors = ["Andrew Farkas <andrew.farkas@quadratic.to>"]
edition = "2021"
description = "Infinite data grid with Python, JavaScript, and SQL built-in"
Expand Down
3 changes: 3 additions & 0 deletions quadratic-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ impl JsGridProxy {
}

async fn get_cell_jsvalue(&mut self, pos: Pos) -> Result<JsValue, JsValue> {
// Record that we accessed this cell.
self.cells_accessed.insert(pos);

let grid_accessor_fn = self.grid_accessor_fn.clone();
let x: JsValue = pos.x.into();
let y: JsValue = pos.y.into();
Expand Down

1 comment on commit 8c93ccb

@vercel
Copy link

@vercel vercel bot commented on 8c93ccb May 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

quadratic – ./

quadratic-quadratic.vercel.app
quadratic-git-main-quadratic.vercel.app
quadratic-nu.vercel.app

Please sign in to comment.