diff options
author | Jenny Yu <jennyyu212@outlook.com> | 2022-04-28 17:09:13 -0400 |
---|---|---|
committer | Jenny Yu <jennyyu212@outlook.com> | 2022-04-28 17:09:13 -0400 |
commit | 99ae2ccde9dbcf6bae75edea231d4b10c736a692 (patch) | |
tree | 52ccc5ad99188a751721a9076b9b98aa90752753 /src/client/views/nodes/RecordingBox/RecordingBox.tsx | |
parent | 83c615b1b9706818894ee74481afd4c2bf34fe61 (diff) |
feat: recording box turning into video + only one recording box
Diffstat (limited to 'src/client/views/nodes/RecordingBox/RecordingBox.tsx')
-rw-r--r-- | src/client/views/nodes/RecordingBox/RecordingBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/RecordingBox/RecordingBox.tsx b/src/client/views/nodes/RecordingBox/RecordingBox.tsx index 6f9451925..86358e838 100644 --- a/src/client/views/nodes/RecordingBox/RecordingBox.tsx +++ b/src/client/views/nodes/RecordingBox/RecordingBox.tsx @@ -39,8 +39,8 @@ export class RecordingBox extends ViewBoxBaseComponent() { this.dataDoc[this.fieldKey + "-duration"] = this.videoDuration; this.layoutDoc.layout = VideoBox.LayoutString(this.fieldKey); - this.dataDoc.nativeWidth = this.dataDoc.nativeHeight = undefined; - this.layoutDoc._fitWidth = undefined; + // this.dataDoc.nativeWidth = this.dataDoc.nativeHeight = undefined; + // this.layoutDoc._fitWidth = undefined; this.dataDoc[this.props.fieldKey] = new VideoField(this.result.accessPaths.agnostic.client); } |