Skip to content

Commit

Permalink
(docs) overview.md: explain tableId in data actions (gristlabs#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacindoe authored May 7, 2024
1 parent d5e82a4 commit 9a89901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 9a89901

Please sign in to comment.