diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-11-04 04:48:32 -0500 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-11-04 04:48:32 -0500 |
commit | 4ce711a5c497a7b198f4be05325cca217fb0844c (patch) | |
tree | 0b8285d167545cc36c8e19cdd3286b6e327239f2 /src/client/views/nodes/DataVizBox/DataVizBox.tsx | |
parent | ab4bba8fac883fcc8e839b88f2b597d9147dcb9b (diff) |
reworking doc generation from template
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DataVizBox.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx index 311a0ad65..6621c610f 100644 --- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx +++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx @@ -703,6 +703,8 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { const values: string[] = []; fields.forEach(col => values.push(this.records[row][col])); + + const proto = new Doc(); proto.author = ClientUtils.CurrentUserEmail(); values.forEach((val, i) => { |