Skip to content

Commit

Permalink
Updates for releae 2.2.1
Browse files Browse the repository at this point in the history
Modified version
removed health quesitonaire
removed cancel from quesitonaire
  • Loading branch information
Sean committed May 31, 2024
1 parent eafb244 commit 38a7670
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 38a7670

Please sign in to comment.