diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-02-22 15:02:26 -0500 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-02-22 15:02:26 -0500 |
commit | fe1536918dbbca08c9900497bb466fd7aa36ffdf (patch) | |
tree | 8b9da0a537da737ea2de9781d6e66e820ca20acc /src/client/views/nodes/DataVizBox/DataVizBox.tsx | |
parent | 370d731eaff3bad1f61f63478a529d38b49a3ccb (diff) |
Splitting staticfield into different content types (as subclasses)
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DataVizBox.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx index 117311b8c..dececd1dc 100644 --- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx +++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx @@ -411,10 +411,10 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { }, { fireImmediately: true } ); - // this._disposers.contentSummary = reaction( - // () => this.records, - // () => this.updateGPTSummary() - // ); + this._disposers.contentSummary = reaction( + () => this.records, + () => this.updateGPTSummary() + ); } fetchData = () => { |