getCMHeight()

in app/ItemView/CodeMirrorContainer.tsx [102:112]


  getCMHeight() {
    if (this.textAreaRef.current) {
      const heightString = window
        .getComputedStyle(this.textAreaRef.current)
        .height.replace(/px$/, "");
      return parseInt(heightString);
    } else {
      console.log("No textAreaRef");
      return this.CM_MIN_HEIGHT;
    }
  }