render()

in source/ui/src/Components/Action/VersionHistoryModal.js [110:147]


    render() {
        return (
          <Modal
            {...this.props}
            // size="xl"
            aria-labelledby="contained-modal-title-vcenter"
            centered
            dialogClassName="custom-modal"
          >
            <Modal.Header closeButton>
              <Modal.Title id="contained-modal-title-vcenter">
                Version History
              </Modal.Title>
            </Modal.Header>
            <Modal.Body>
                <div  
                      className="ag-theme-blue"
                      style={{ 
                      height: 'calc(80vh - 50px)'
                    }}
                      >
                      <AgGridReact
                          onGridReady={this.onGridReady}
                          rowSelection="single"
                          defaultColDef= {{resizable: true,sortable: true, filter: true}}
                          columnDefs={this.state.columnDefs}
                          rowData={this.props.params.versionHistoryItems}
                          onRowSelected={this.onRowSelected}
                          >
                      </AgGridReact>
                  </div>
            </Modal.Body>
            <Modal.Footer>
              <Button variant="danger" onClick={this.props.onHide}>Close</Button>
            </Modal.Footer>
          </Modal>
        );
      }//end render