Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for releae 2.2.1 #71

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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