Skip to content

Commit

Permalink
Provenance graph should now fit the size of their container (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Aug 25, 2019
1 parent bee2427 commit 26551f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}

Expand Down

0 comments on commit 26551f1

Please sign in to comment.