Skip to content

Commit

Permalink
Merge pull request #374 from ecare-software/night-monitor-sig
Browse files Browse the repository at this point in the history
Night Monitor Form Displays Creator Signature
  • Loading branch information
annastasiablack authored Jul 19, 2024
2 parents 8812a03 + d04ec87 commit 172f28c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Forms/NightMonitoring.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class NightMonitoring extends Component {
...this.props.formData,
loadingSig: false,
loadingClients: false,
signature: this.props.userObj.signature,
signature: createdUserData.signature,
});
};

Expand Down Expand Up @@ -371,7 +371,7 @@ class NightMonitoring extends Component {
setRootState={this.setRootState}
rootState={this.state}
clients={this.state.clients}
signature={this.props.userObj.signature}
signature={this.state.signature}
/>
<FormError errorId={this.props.id + "-error"} />

Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Reports/ShowFormContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const MetaDetails = ({ formData, isAdminRole, route, userObj }) => {
</h6>
</div>
<div className="d-flex align-items-center hide-on-print">
<h6 style={{ fontWeight: 400, marginRight: 5 }}>Created Date</h6>{" "}
<h6 style={{ fontWeight: 400, marginRight: 5 }}>Created</h6>{" "}
<h6 style={{ fontWeight: 300 }}>
{` ${formData.createdByName}, ${
formData.createdByName
Expand Down

0 comments on commit 172f28c

Please sign in to comment.