diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-08 18:31:32 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-08 18:31:32 -0400 |
| commit | 3925f2ca6f313ba3ced747f05c4ab69a323755a7 (patch) | |
| tree | 8d5837f5300f8d92d6d2a80d357e880a048a173f /src/client/northstar/dash-fields | |
| parent | b6eae4662c8422f269a4e2ec810e0e94a4b5089d (diff) | |
| parent | 3a9f6df918ad45e55b0c6a540cb566aff4940288 (diff) | |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into propsRefactor
Diffstat (limited to 'src/client/northstar/dash-fields')
| -rw-r--r-- | src/client/northstar/dash-fields/HistogramField.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/northstar/dash-fields/HistogramField.ts b/src/client/northstar/dash-fields/HistogramField.ts index f939ccd83..fa2a9c008 100644 --- a/src/client/northstar/dash-fields/HistogramField.ts +++ b/src/client/northstar/dash-fields/HistogramField.ts @@ -27,7 +27,7 @@ export class HistogramField extends BasicField<HistogramOperation> { } Copy(): Field { - return new HistogramField(this.Data); + return new HistogramField(this.Data.Copy()); } ToScriptString(): string { |
