toggle (e: any) {
    this.setState((prevState: any) => ({ truncated: !prevState.truncated }));
    e.preventDefault();
  }