diff --git a/src/assets/style/navbarStyles.css b/src/assets/style/navbarStyles.css
index b11c27c..ab5ddce 100644
--- a/src/assets/style/navbarStyles.css
+++ b/src/assets/style/navbarStyles.css
@@ -40,14 +40,14 @@
height: 2px;
background:#0C489E;
position: absolute;
- top: -4px;
+ top: 1px;
left: 20px;
}
#navbar div li ul {
background: white;
visibility: hidden;
opacity: 0;
- min-width: 16rem;
+ min-width: 18rem;
position: absolute;
/* transition: all 0.5s ease; */
left: 0;
diff --git a/src/layout/MainLayout/Header/index.js b/src/layout/MainLayout/Header/index.js
index 0f28f4a..9e46add 100644
--- a/src/layout/MainLayout/Header/index.js
+++ b/src/layout/MainLayout/Header/index.js
@@ -89,13 +89,13 @@ function Header(props) {
Client
-
- User
+ Users (GLD)
-
- Individual User
+ Users (Individual)
-
- Organization User
+ Users (Organization)
-
Organization
diff --git a/src/pages/pnspsUserDetailPage/UserInformationCard.js b/src/pages/pnspsUserDetailPage/UserInformationCard.js
index 6bf419f..755da6a 100644
--- a/src/pages/pnspsUserDetailPage/UserInformationCard.js
+++ b/src/pages/pnspsUserDetailPage/UserInformationCard.js
@@ -5,15 +5,15 @@ import {
import MainCard from "../../components/MainCard";
import * as React from "react";
import {useForm} from "react-hook-form";
-import Autocomplete from "@mui/material/Autocomplete";
-import {
- subDivision1,
- subDivision2,
- subDivision3,
- subDivision4,
- subDivision5,
- subDivision6
-} from "../pnspsUserSearchPage/DummyComboRecord";
+// import Autocomplete from "@mui/material/Autocomplete";
+// import {
+// subDivision1,
+// subDivision2,
+// subDivision3,
+// subDivision4,
+// subDivision5,
+// subDivision6
+// } from "../pnspsUserSearchPage/DummyComboRecord";
import {useEffect, useState} from "react";
import Checkbox from "@mui/material/Checkbox";
import LoadingComponent from "../extra-pages/LoadingComponent";
@@ -22,58 +22,58 @@ import LoadingComponent from "../extra-pages/LoadingComponent";
// ==============================|| DASHBOARD - DEFAULT ||============================== //
-const subDivisionArray = [
- ...subDivision1,
- ...subDivision2,
- ...subDivision3,
- ...subDivision4,
- ...subDivision5,
- ...subDivision6
-];
+// const subDivisionArray = [
+// ...subDivision1,
+// ...subDivision2,
+// ...subDivision3,
+// ...subDivision4,
+// ...subDivision5,
+// ...subDivision6
+// ];
const UserInformationCard = ({isCollectData, updateUserObject,userData}) => {
//const params = useParams();
const [currentUserData, setCurrentUserData] = React.useState({});
- const [subDivision, setSubDivision] = useState(null);
+ // const [subDivision, setSubDivision] = useState(null);
const [locked, setLocked] = useState(false);
- const [isLotusNoteUser, setIsLotusNoteUser] = useState(false);
- const [lotusNoteUserList, setLotusNoteUserList] = useState([])
- const [selectedLotusUser, setSelectedLotusUser] = useState(null);
+ // const [isLotusNoteUser, setIsLotusNoteUser] = useState(false);
+ // const [lotusNoteUserList, setLotusNoteUserList] = useState([])
+ // const [selectedLotusUser, setSelectedLotusUser] = useState(null);
const [onReady, setOnReady] = useState(false);
const {register, getValues} = useForm()
- useEffect(() => {
- //TODO: Get lotus note user list
- setLotusNoteUserList([
- {
- key: 1,
- label: "user01",
- account: "user123456"
- },
- {
- key: 2,
- label: "user02",
- account: "userabcde1"
- },
- {
- key: 3,
- label: "user03",
- account: "user2001"
- },
- {
- key: 4,
- label: "user04",
- account: "user2000"
- },
- {
- key: 5,
- label: "user05",
- account: "user1999"
- },
- ])
- }, []);
+ // useEffect(() => {
+ // //TODO: Get lotus note user list
+ // setLotusNoteUserList([
+ // {
+ // key: 1,
+ // label: "user01",
+ // account: "user123456"
+ // },
+ // {
+ // key: 2,
+ // label: "user02",
+ // account: "userabcde1"
+ // },
+ // {
+ // key: 3,
+ // label: "user03",
+ // account: "user2001"
+ // },
+ // {
+ // key: 4,
+ // label: "user04",
+ // account: "user2000"
+ // },
+ // {
+ // key: 5,
+ // label: "user05",
+ // account: "user1999"
+ // },
+ // ])
+ // }, []);
useEffect(() => {
//if user data from parent are not null
@@ -95,8 +95,8 @@ const UserInformationCard = ({isCollectData, updateUserObject,userData}) => {
const values = getValues();
const objectData ={
...values,
- selectedLotusUser: selectedLotusUser,
- subDivision: subDivision,
+ // selectedLotusUser: selectedLotusUser,
+ // subDivision: subDivision,
locked: locked,
}
updateUserObject(objectData);
@@ -117,38 +117,6 @@ const UserInformationCard = ({isCollectData, updateUserObject,userData}) => {