Skip to content

Commit

Permalink
Merge pull request I-TECH-UW#976 from konavivekramakrishna/fix#897
Browse files Browse the repository at this point in the history
Re-Write NonConformingEvent Report in new UI
  • Loading branch information
mozzy11 authored Apr 18, 2024
2 parents 542b74c + 1d6914b commit c2cf707
Show file tree
Hide file tree
Showing 11 changed files with 1,272 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module.exports = {
},
rules: {
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react/no-unescaped-entities": "warn",
"react-hooks/exhaustive-deps": "off",
"no-unused-vars": "warn",
Expand Down Expand Up @@ -53,6 +54,7 @@ module.exports = {
*/
rules: {
"react/prop-types": "warn",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/no-empty-interface": "warn",
"no-case-declarations": "off",
Expand Down
7 changes: 7 additions & 0 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import RoutineIndex from "./components/reports/routine/Index.js";
import StudyIndex from "./components/reports/study/index.js";
import ReportIndex from "./components/reports/Index.js";
import PrintBarcode from "./components/printBarcode/Index";
import NonConformIndex from "./components/nonconform/index";
import SampleBatchEntrySetup from "./components/batchOrderEntry/SampleBatchEntrySetup.js";
import AuditTrailReportIndex from "./components/reports/auditTrailReport/Index.js";

Expand Down Expand Up @@ -284,6 +285,12 @@ export default function App() {
exact
component={() => <FindOrder />}
role="Reception"
/>
<SecureRoute
path="/NonconformingEvent"
exact
component={() => <NonConformIndex />}
role="Reception"
/>
<SecureRoute
path="/SampleBatchEntrySetup"
Expand Down
Loading

0 comments on commit c2cf707

Please sign in to comment.