This commit is contained in:
hyunwoo93.cha
2024-10-16 18:02:28 +09:00
parent 548af57435
commit 02e07acae4
3 changed files with 16 additions and 9 deletions

View File

@@ -69,12 +69,6 @@ button {
padding: 0; padding: 0;
} }
body {
> iframe {
display: none !important;
}
}
.preventMouse { .preventMouse {
* { * {
pointer-events: none; pointer-events: none;

View File

@@ -245,7 +245,7 @@ export const handleDeepLink = (contentTarget) => (dispatch, getState) => {
const secondLayerInfo = { const secondLayerInfo = {
linkTpCd, linkTpCd,
// linkTpNm, // linkTpNm
logTpNo: LOG_TP_NO.SECOND_LAYER, logTpNo: LOG_TP_NO.SECOND_LAYER,
}; };

View File

@@ -474,7 +474,7 @@ export default function MainView({ className }) {
sendLogAlarmClick({ sendLogAlarmClick({
alarmDt, alarmDt,
alarmType: "Upcoming", alarmType: "Upcoming",
clickFlag: "OK", clickFlag: "Ok",
cnt: "0", cnt: "0",
hstNm, hstNm,
keywordList: "", keywordList: "",
@@ -520,7 +520,7 @@ export default function MainView({ className }) {
sendLogAlarmClick({ sendLogAlarmClick({
alarmDt, alarmDt,
alarmType: "Upcoming", alarmType: "Upcoming",
clickFlag: "NO", clickFlag: "No",
cnt: "0", cnt: "0",
hstNm, hstNm,
keywordList: "", keywordList: "",
@@ -687,6 +687,19 @@ export default function MainView({ className }) {
{loadingComplete && {loadingComplete &&
activePopup === Config.ACTIVE_POPUP.endOfServicePopup && activePopup === Config.ACTIVE_POPUP.endOfServicePopup &&
!skipEndOfServicePopup && <EndOfServicePopUp />} !skipEndOfServicePopup && <EndOfServicePopUp />}
<div
style={{
position: "fixed",
left: "0",
bottom: "0",
color: "#fff",
fontSize: "13px",
opacity: ".5",
zIndex: "999",
}}
>
v1015-001
</div>
</div> </div>
); );
} }