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

Removed Task Functionality from DTR RI #173

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 0 additions & 9 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import PriorAuth from "./components/PriorAuth/PriorAuth";
import QuestionnaireForm from "./components/QuestionnaireForm/QuestionnaireForm";
import Testing from "./components/ConsoleBox/Testing";
import UserMessage from "./components/UserMessage/UserMessage";
import TaskPopup from "./components/Popup/TaskPopup";
import PatientSelect from "./components/PatientSelect/PatientSelect";

// uncomment for testing UserMessage
Expand Down Expand Up @@ -543,14 +542,6 @@ export default class App extends Component {
};

renderButtons(ref) {
const element = (<div><div><TaskPopup smart = {this.smart} />
<div className="task-button">
<label>Attestation</label> <input type="checkbox" onChange={()=>{this.setTasks()}} id="attestationCheckbox"></input>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we trying to remove the attestation button as well?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, we still need the attestation button. Thanks Keeyan

</div>
<div className="task-button">
<label>Only Show Unfilled Fields</label> <input type="checkbox" onChange={()=>{this.filter(false)}} id="filterCheckbox" ref={this.onFilterCheckboxRefChange}></input>
</div></div></div>)
ReactDOM.render(element, ref);
}

renderErrors() {
Expand Down
21 changes: 0 additions & 21 deletions src/components/Popup/Task.css

This file was deleted.

38 changes: 0 additions & 38 deletions src/components/Popup/TaskForm.jsx

This file was deleted.

112 changes: 0 additions & 112 deletions src/components/Popup/TaskPopup.jsx

This file was deleted.

Loading