Skip to content

Commit

Permalink
Merge pull request #1166 from adityadeshlahre/fix-batch-test-reassign…
Browse files Browse the repository at this point in the history
…ment

fix(batchTestReassignmentPage): Rewritting Batch test reassignment and cancelation JSP page to react Js
  • Loading branch information
mozzy11 authored Aug 12, 2024
2 parents c689667 + a301070 commit fe8c185
Show file tree
Hide file tree
Showing 7 changed files with 1,543 additions and 2 deletions.
8 changes: 8 additions & 0 deletions frontend/src/components/admin/Admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
Report,
Bullhorn,
User,
BatchJob,
} from "@carbon/icons-react";
import PathRoute from "../utils/PathRoute";
import CalculatedValue from "./calculatedValue/CalculatedValueForm";
Expand All @@ -52,6 +53,7 @@ import OrganizationAddModify from "./OrganizationManagement/OrganizationAddModif
import UserManagement from "./userManagement/UserManagement";
import UserAddModify from "./userManagement/UserAddModify";
import ManageMethod from "./testManagement/ManageMethod.js";
import BatchTestReassignmentAndCancelation from "./BatchTestReassignmentAndCancellation/BatchTestReassignmentAndCancelation.js";

function Admin() {
const intl = useIntl();
Expand Down Expand Up @@ -123,6 +125,9 @@ function Admin() {
<SideNavLink renderIcon={User} href="#userManagement">
<FormattedMessage id="unifiedSystemUser.browser.title" />
</SideNavLink>
<SideNavLink renderIcon={BatchJob} href="#batchTestReassignment">
<FormattedMessage id="configuration.batch.test.reassignment" />
</SideNavLink>
<SideNavMenu
title={intl.formatMessage({ id: "sidenav.label.admin.menu" })}
renderIcon={TableOfContents}
Expand Down Expand Up @@ -241,6 +246,9 @@ function Admin() {
<PathRoute path="#userManagement">
<UserManagement />
</PathRoute>
<PathRoute path="#batchTestReassignment">
<BatchTestReassignmentAndCancelation />
</PathRoute>
<PathRoute path="#userEdit">
<UserAddModify />
</PathRoute>
Expand Down
Loading

0 comments on commit fe8c185

Please sign in to comment.