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

prod deployment - nov 18 #786

Merged
merged 2 commits into from
Nov 18, 2024
Merged
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
11 changes: 4 additions & 7 deletions packages/nulp_elite/src/pages/content/joinCourse.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ const JoinCourse = () => {

const handleLinkClick = (id) => {
if (isEnroll) {
navigate(`${routeConfig.ROUTES.PLAYER_PAGE.PLAYER}?id=${id}`, {
navigate(`${routeConfig.ROUTES.PLAYER_PAGE.PLAYER}?${id}`, {
state: {
coursename: userData?.result?.content?.name,
batchid: batchDetails?.batchId,
Expand Down Expand Up @@ -1668,7 +1668,7 @@ const JoinCourse = () => {
</AccordionSummary>

<AccordionDetails
style={{ padding: "12px", margin: "-10px 0px" }}
style={{ 'padding': '12px',margin: '-10px 0px'}}
>
{/* If it's not a content collection, render it like a clickable child */}
{faqIndex.mimeType !==
Expand Down Expand Up @@ -1699,7 +1699,7 @@ const JoinCourse = () => {
<AccordionDetails
key={faqIndexname.identifier || faqIndexname.name}
className="border-bottom"
style={{ padding: "12px", margin: "-10px 0px" }}
style={{ 'padding': '12px',margin: '-10px 0px'}}
>
{faqIndexname.children &&
faqIndexname.children.length > 0 ? (
Expand Down Expand Up @@ -1742,10 +1742,7 @@ const JoinCourse = () => {
<AccordionDetails
key={child.identifier || child.name}
className="border-bottom"
style={{
padding: "12px",
margin: "-10px 0px",
}}
style={{ 'padding': '12px',margin: '-10px 0px'}}
>
{child.children &&
child.children.length > 0 ? (
Expand Down
Loading