Skip to content

Commit

Permalink
updateit
Browse files Browse the repository at this point in the history
  • Loading branch information
summerhasuna committed Jul 14, 2024
1 parent c05ff29 commit d2f779e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions src/app/competents/layout/PreviewCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,14 @@ const PreviewCode: React.FC<PreviewCodeProps> = ({
"template": ${
deviceType == "Mobile"
? templateM
? templateM
? templateM == "0"
? "1"
: templateM
: 0
: templateD
? templateD
? templateD == "0"
? "1"
: templateD
: 0
}
${
Expand Down Expand Up @@ -179,7 +183,12 @@ const PreviewCode: React.FC<PreviewCodeProps> = ({
(deviceType == "Mobile" && templateM === "0")
? `"linkAnalytics":"${`Unknown >> slider (control) >> Slide 1 >>${
event ? event : ""
}`}"`
}`}" ,
"lines": [{
"text":""
}]
`
: ""
}
${
Expand Down
2 changes: 1 addition & 1 deletion src/app/competents/layout/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ blockquote {
justify-content: center;
margin-bottom: 32px;
cursor: pointer;
z-index: 20;
}

.flexEnd {
Expand All @@ -270,7 +271,6 @@ blockquote {

.flexEnd {
position: absolute;
z-index: 1;
top: 20px;
right: 20px;
}
Expand Down

0 comments on commit d2f779e

Please sign in to comment.