Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
integration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
smalho01 committed Feb 10, 2023
1 parent f2ce72a commit fdbbac9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/RemsInterface/RemsInterface.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,14 @@ export default class RemsInterface extends Component {
<Paper style={{ paddingBottom: "5px" }}>
<div className="status-icon" style={{ backgroundColor: colorPis }}></div>
<div className="bundle-entry">
ID : {this.state.response?.data?.doctorOrder?._id || "N/A"}
ID : {this.state.response?.data?._id || "N/A"}
</div>
<div className="bundle-entry">
Status: {this.state.response?.data?.doctorOrder?.dispenseStatus}
Status: {this.state.response?.data?.dispenseStatus}
</div>
<div className="bundle-entry">
<Button variant="contained" onClick={this.togglePisBundle}>View Bundle</Button>
{this.state.response?.data?.doctorOrder?._id ?
{/* <Button variant="contained" onClick={this.togglePisBundle}>View Bundle</Button> */}
{this.state.response?.data?._id ?
<AutorenewIcon
className={this.state.spinPis === true ? "refresh" : "renew-icon"}
onClick={this.refreshPisBundle}
Expand Down

0 comments on commit fdbbac9

Please sign in to comment.