diff options
author | bobzel <zzzman@gmail.com> | 2023-12-01 02:33:04 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-01 02:33:04 -0500 |
commit | 9ae07e29f41df9d64985c25b67054843a99a0224 (patch) | |
tree | 092fc2062bbca4c6d59cb6c49e977197addf5556 /src/client/views/nodes/LoadingBox.tsx | |
parent | 0e9f8ceceeca5bca7888cb611afb4d2b9963d5ae (diff) |
converted props.DataDoc to props.TemplateDataDocument and fixed so that it's always undefined unless it's a template. converted references from rootDocument to props.TemplateDataDocument.
Diffstat (limited to 'src/client/views/nodes/LoadingBox.tsx')
-rw-r--r-- | src/client/views/nodes/LoadingBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LoadingBox.tsx b/src/client/views/nodes/LoadingBox.tsx index 86c91ae3c..01dd830f8 100644 --- a/src/client/views/nodes/LoadingBox.tsx +++ b/src/client/views/nodes/LoadingBox.tsx @@ -78,7 +78,7 @@ export class LoadingBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { <div className="loadingBox-textContainer"> <span className="loadingBox-title">{StrCast(this.Document.title)}</span> <p className="loadingBox-headerText">{StrCast(this.Document.loadingError, 'Loading ' + (this.progress.replace('[download]', '') || '(can take several minutes)'))}</p> - {this.rootDDocumentoc.loadingError ? null : ( + {this.Document.loadingError ? null : ( <div className="loadingBox-spinner"> <ReactLoading type="spinningBubbles" color="blue" height={100} width={100} /> </div> |