Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug #227680 - [webapp => profile] showing hand cursor for role tags on profile page.PFA,Bug #227322 -[webapp => poll] social medial icons should be visible in one line on poll card,Bug #227675 - [webapp => Learning report] When clicking on learning report,it is opening learning report on same window. #649

Merged
merged 3 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions packages/nulp_elite/src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -865,21 +865,16 @@ function Header({ globalSearchQuery }) {
</MenuItem>
</Link>
)}
<Link
href={routeConfig.ROUTES.LEARNING_REPORT}
underline="none"
textAlign="center"
<MenuItem
className="ml-10"
onClick={() => {
sessionStorage.setItem("urlPath", "learningreport");
window.open(routeConfig.ROUTES.LEARNING_REPORT, "_blank");
}}
style={{color:'#1976d2'}}
>
<MenuItem
className="ml-10"
onClick={() => {
sessionStorage.setItem("urlPath", "learningreport");
window.open(routeConfig.ROUTES.LEARNING_REPORT, "_blank");
}}
>
{t("LEARNING_REPORT")}
</MenuItem>
</Link>
{t("LEARNING_REPORT")}
</MenuItem>
</List>
</Collapse>
{roleNames.some((role) =>
Expand Down
1 change: 1 addition & 0 deletions packages/nulp_elite/src/pages/profile/Profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,7 @@ const Profile = () => {
fontSize: "10px",
margin: "0 10px 3px 6px",
background: "#e3f5ff",
cursor: 'auto',
}}
>
{roleName}
Expand Down
16 changes: 8 additions & 8 deletions packages/nulp_elite/src/pages/voting/pollsDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const pollsDetailes = () => {
<Box className="xs-hide text-right">
<FacebookShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
quote={`Check out this poll: ${items.title}`}
onClick={(event) => {
openSocialMediaLink(event, shareUrl);
Expand All @@ -251,7 +251,7 @@ const pollsDetailes = () => {
url={shareUrl}
title={`Check out this poll: ${items.title}`}
separator=":: "
className="pr-5"
className="pr-3"
onClick={(event) =>
openSocialMediaLink(event, shareUrl)
}
Expand All @@ -260,7 +260,7 @@ const pollsDetailes = () => {
</WhatsappShareButton>
<LinkedinShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
title={items.title}
summary={`Participate in this poll: ${items.title}`}
onClick={(event) => {
Expand All @@ -271,7 +271,7 @@ const pollsDetailes = () => {
</LinkedinShareButton>
<TwitterShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
title={`Check out this poll: ${items.title}`}
onClick={(event) => {
openSocialMediaLink(event, shareUrl);
Expand Down Expand Up @@ -406,7 +406,7 @@ const pollsDetailes = () => {
<Box className="lg-hide">
<FacebookShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
quote={`Check out this poll: ${items.title}`}
onClick={(event) => {
openSocialMediaLink(event, shareUrl);
Expand All @@ -422,7 +422,7 @@ const pollsDetailes = () => {
url={shareUrl}
title={`Check out this poll: ${items.title}`}
separator=":: "
className="pr-5"
className="pr-3"
onClick={(event) =>
openSocialMediaLink(event, shareUrl)
}
Expand All @@ -431,7 +431,7 @@ const pollsDetailes = () => {
</WhatsappShareButton>
<LinkedinShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
title={items.title}
summary={`Participate in this poll: ${items.title}`}
onClick={(event) => {
Expand All @@ -442,7 +442,7 @@ const pollsDetailes = () => {
</LinkedinShareButton>
<TwitterShareButton
url={shareUrl}
className="pr-5"
className="pr-3"
title={`Check out this poll: ${items.title}`}
onClick={(event) => {
openSocialMediaLink(event, shareUrl);
Expand Down
Loading