Skip to content

Commit

Permalink
Merge pull request #215 from sriranjan-s/master
Browse files Browse the repository at this point in the history
Added hyperlink for password change in employee side for digit and upyog UI
  • Loading branch information
upyog-central-git authored Jun 22, 2023
2 parents c71bf10 + de8ee43 commit 2b47ddf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const CitizenSubMenuSideBar = ({ item }) => {
const leftIcon = leftIconArray ? IconsObject[leftIconArray] : IconsObject.BillsIcon;
return (
<React.Fragment>
<div className="submenu-container">
<div className="submenu-container" style={{"position":"relative"}}>
<div onClick={item.links && showSubnav} className={`sidebar-link ${subnav === true ? "active" : ""}`}>
<div className="actions">
{leftIcon}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

return (
<div className="user-profile">
<section style={{ margin: userType === "citizen" ? "8px" : "24px" }}>
<section style={{ margin: userType === "citizen" ? "8px" : "24px",position:"relative" }}>
{userType === "citizen" ? (
<BackButton></BackButton>
) : (
Expand Down Expand Up @@ -572,7 +572,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

<LabelFieldPair>
<div>
<a style={{ color: "orange", cursor: "default", marginBottom: "5", cursor: "pointer" }} onClick={TogleforPassword}>
<a style={{ color: "#a82227", cursor: "default", marginBottom: "5", cursor: "pointer",position:"relative" }} onClick={TogleforPassword}>
{t("CORE_COMMON_CHANGE_PASSWORD")}
</a>
{changepassword ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const CitizenSubMenuSideBar = ({ item }) => {
const leftIcon = leftIconArray ? IconsObject[leftIconArray] : IconsObject.BillsIcon;
return (
<React.Fragment>
<div className="submenu-container">
<div className="submenu-container" style={{"position":"relative"}}>
<div onClick={item.links && showSubnav} className={`sidebar-link ${subnav === true ? "active" : ""}`}>
<div className="actions">
{leftIcon}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

return (
<div className="user-profile">
<section style={{ margin: userType === "citizen" ? "8px" : "24px" }}>
<section style={{ margin: userType === "citizen" ? "8px" : "24px",position:"relative" }}>
{userType === "citizen" ? (
<BackButton></BackButton>
) : (
Expand Down Expand Up @@ -572,7 +572,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

<LabelFieldPair>
<div>
<a style={{ color: "orange", cursor: "default", marginBottom: "5", cursor: "pointer" }} onClick={TogleforPassword}>
<a style={{ color: "#a82227", cursor: "default", marginBottom: "5", cursor: "pointer",position:"relative" }} onClick={TogleforPassword}>
{t("CORE_COMMON_CHANGE_PASSWORD")}
</a>
{changepassword ? (
Expand Down

0 comments on commit 2b47ddf

Please sign in to comment.