From 9a89901042a1d99dab8d2f5158e21545d7d9a09a Mon Sep 17 00:00:00 2001 From: James Macindoe Date: Wed, 8 May 2024 07:20:40 +1000 Subject: [PATCH] (docs) overview.md: explain tableId in data actions (#965) --- documentation/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/overview.md b/documentation/overview.md index b7cd798a..f3ac0482 100644 --- a/documentation/overview.md +++ b/documentation/overview.md @@ -88,7 +88,7 @@ export type RemoveTable = ['RemoveTable', string]; export type RenameTable = ['RenameTable', string, string]; ``` -Data actions take a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values: +Data actions take a string `tableId` and a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values: ``` export interface ColValues { [colId: string]: CellValue; }