From 26551f11e5a123426011b3dc31be8ca7f2d9b778 Mon Sep 17 00:00:00 2001 From: tschaffter Date: Sun, 25 Aug 2019 11:25:38 -0700 Subject: [PATCH] Provenance graph should now fit the size of their container (#439) --- .../provenance/provenance-graph/provenance-graph.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/provenance/provenance-graph/provenance-graph.component.ts b/client/components/provenance/provenance-graph/provenance-graph.component.ts index 2bc5332ba..97d82fb32 100644 --- a/client/components/provenance/provenance-graph/provenance-graph.component.ts +++ b/client/components/provenance/provenance-graph/provenance-graph.component.ts @@ -61,8 +61,8 @@ export class ProvenanceGraphComponent implements AfterViewInit, OnChanges { } get options() { return this._options = { - width: 425, - height: 450 + width: window.innerWidth, + height: window.innerHeight }; }