constructor()

in src/app/components/issue-card.js [133:142]


  constructor(props) {
    super(props);
    this.state = {
      expanded: false,
      issue: this.props.issue,
      coloredSquare: null, //IssueCard.getColoredSquareModel(issue),
      valuableFields: null //IssueCard.getValuableIssueFields(issue)
    };
    this.getFieldsAndExpand = this.getFieldsAndExpand.bind(this);
  }