Skip to content

Commit

Permalink
Merge pull request #71 from swmuir/develop
Browse files Browse the repository at this point in the history
Updates for releae 2.2.1
swmuir authored May 31, 2024
2 parents eafb244 + 38a7670 commit 6674cc0
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -89,6 +89,6 @@ REACT_APP_LOG_ENABLED=false
REACT_APP_LOG_API_KEY=<...>
REACT_APP_LOG_ENDPOINT_URI="http://localhost:8085"

REACT_APP_VERSION="version - 2.1.2"
REACT_APP_VERSION="version - 2.2.1"
# Set to have HHS Banner
REACT_APP_HHS_BANNER=<...>
REACT_APP_HHS_BANNER=false
5 changes: 1 addition & 4 deletions src/Home.tsx
Original file line number Diff line number Diff line change
@@ -147,11 +147,8 @@ export default class Home extends React.Component<HomeProps, HomeState> {
pathname: '/questionnaire',
state: { patientSummaries: this.props.patientSummaries, questionnaireId: 'caregiver-strain-questionnaire' }
}} ><strong>Caregiver Strain Assessment</strong></Link><br />
<Link to={{
pathname: '/questionnaire',
state: { patientSummaries: this.props.patientSummaries, questionnaireId: 'patient-priorities-care-questionnaire' }
}} ><strong>My Health Priorities</strong></Link><br />


{/* {(tasks === undefined)
? <p>You have no tasks today!</p>
: <ul>
Original file line number Diff line number Diff line change
@@ -230,7 +230,7 @@ export default class QuestionnaireItemComponent extends React.Component<any, Que
}
</div>
<Button className="btn btn-primary next-button" value={this.props.QuestionnaireItem.linkId} onClick={(event: any) => this.handleNextQuestionScroll(event.target.value)}>Next</Button>
<Button className="exit-button" onClick={this.handleCancelClick}>Cancel</Button>

<Modal show={this.state.showCancelPopup} onHide={this.handleCancelDeny} className="custom-modal">
<Modal.Header>
<Modal.Title>Leave questionnaire?</Modal.Title>

0 comments on commit 6674cc0

Please sign in to comment.