From 60a19dda8965b314563a2d7cc0e3093dc2c0e581 Mon Sep 17 00:00:00 2001 From: blog-dev Date: Fri, 4 Sep 2026 00:36:58 +0000 Subject: [PATCH] fix(blog): correct PK live-formula wording in v7.13 post --- content/blog/v7-13-formulas-and-regex/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/v7-13-formulas-and-regex/index.md b/content/blog/v7-13-formulas-and-regex/index.md index 7bae3af..bbdc611 100644 --- a/content/blog/v7-13-formulas-and-regex/index.md +++ b/content/blog/v7-13-formulas-and-regex/index.md @@ -134,7 +134,7 @@ Behind the columns shown here, the same edit also resolved the change-summary fo * When you paste a formula into the grid, column names are automatically translated so the formula works in its new position. * A cell that is overwritten by a formula is flagged (with the original value retained) so you can revert it. * Formula-looking values pasted from Excel are treated as plain data (not evaluated), unless you explicitly choose "Apply as formula" - a deliberate safety measure so a spreadsheet's internal formulas don't leak into your data as live rules. -* When submitted, it's the formula's computed value that is sent to the backend, never the raw formula text (a primary key column even resolves its live formula to the computed value so the submission keys are correct). +* When submitted, it's the formula's computed value that is sent to the backend, never the raw formula text (a primary key column always resolves its live formula immediately to the computed value so the submission keys are correct). ## How it works under the hood (briefly)