|
|
@ -8,7 +8,7 @@ import { Pagination, Tooltip } from 'antd'; |
|
|
|
import { USER_EDIT, SATUAN_ADD, SATUAN_EDIT, SATUAN_DELETE, SATUAN_SEARCH } from '../../../const/ApiConst'; |
|
|
|
import { USER_EDIT, SATUAN_ADD, SATUAN_EDIT, SATUAN_DELETE, SATUAN_SEARCH } from '../../../const/ApiConst'; |
|
|
|
import profile from '../../../assets/img/profile.png' |
|
|
|
import profile from '../../../assets/img/profile.png' |
|
|
|
import DialogForm from './DialogForm' |
|
|
|
import DialogForm from './DialogForm' |
|
|
|
import { ROLE_SEARCH, BASE_OSPRO } from '../../../const/ApiConst' |
|
|
|
import { ROLE_SEARCH, USER_GET_ID } from '../../../const/ApiConst' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -120,9 +120,7 @@ const Profile = ({ params }) => { |
|
|
|
|
|
|
|
|
|
|
|
const getDataProfileUser = async () => { |
|
|
|
const getDataProfileUser = async () => { |
|
|
|
const id = localStorage.getItem("user_id") |
|
|
|
const id = localStorage.getItem("user_id") |
|
|
|
|
|
|
|
const url = USER_GET_ID(id); |
|
|
|
const url = `${BASE_OSPRO}/api/human-resource/edit/${id}` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const result = await axios |
|
|
|
const result = await axios |
|
|
|
.get(url, config) |
|
|
|
.get(url, config) |
|
|
|
.then((res) => res) |
|
|
|
.then((res) => res) |
|
|
|