Merge branch '400-zero-trust-mvp-venn-diagram' of https://github.com/guardicore/monkey into 400-zero-trust-mvp-venn-diagram

This commit is contained in:
Shay Nehmad 2019-08-26 14:23:17 +03:00
commit 4601882ba2
2 changed files with 0 additions and 9 deletions

View File

@ -12,13 +12,6 @@ class ResponsiveVennDiagram extends React.Component {
render() {
const {pillarsGrades} = this.props;
let childrenWidth = this.props.containerWidth, childrenHeight = this.props.containerHeight;
if (childrenHeight === 0 || isNaN(childrenHeight)) {
childrenHeight = childrenWidth;
} else {
childrenWidth = Math.min(childrenWidth, childrenHeight)
}
return (
<div ref={this.divElement} style={{textAlign: 'center'}}>

View File

@ -13,7 +13,6 @@ class VennDiagram extends React.Component {
this.state = {tooltip: {top: 0, left: 0, display: 'none', html: ''}};
this.width = this.height = 512;
this.zOrder = [];
this.colors = ['#777777', '#D9534F', '#F0AD4E', '#5CB85C'];
this.prefix = 'vennDiagram';
@ -208,7 +207,6 @@ class VennDiagram extends React.Component {
} else {
// equivalent to center translate (width/2, height/2)
let viewPortParameters = (-this.width / 2) + ' ' + (-this.height / 2) + ' ' + this.width + ' ' + this.height;
let translate = 'translate(' + this.width / 2 + ',' + this.height / 2 + ')';
let nodes = Object.values(this.layout).map((d_, i_) => {
if (d_.hasOwnProperty('cx')) {