diff options
author | bobzel <zzzman@gmail.com> | 2021-03-16 00:19:55 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-16 00:19:55 -0400 |
commit | c27d8d20b44ba2fb8b0ddb2ef077ce155df7fa84 (patch) | |
tree | 1de94a28a3df4e6bcce65399aa37cc1eb21a20b6 /src/client/views/nodes/WebBox.tsx | |
parent | ecaf1da499b41d0f873c64cb128118a6a291229e (diff) |
fixed warnings
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index bc20c3b47..578794e6e 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -436,7 +436,7 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum } else { this.layoutDoc.nativeWidth = NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]); } - this.layoutDoc._width = NumCast(this.layoutDoc._nativeWidth) * (NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]) / NumCast(this.layoutDoc[this.fieldKey + "-nativeHeight"])) + this.layoutDoc._width = NumCast(this.layoutDoc._nativeWidth) * (NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]) / NumCast(this.layoutDoc[this.fieldKey + "-nativeHeight"])); } sidebarKey = () => this.fieldKey + "-sidebar"; sidebarFiltersHeight = () => 50; |