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

블로그 최초 진입시 무한 로딩걸리는 현상 #262

Closed
Gilbert9172 opened this issue Dec 10, 2024 · 3 comments
Closed

블로그 최초 진입시 무한 로딩걸리는 현상 #262

Gilbert9172 opened this issue Dec 10, 2024 · 3 comments
Assignees
Labels
bug Something isn't working

Comments

@Gilbert9172
Copy link

Gilbert9172 commented Dec 10, 2024

환경 (버그가 발생한 환경을 적어주세요.):

  • 운영체제: m1 pro
  • 브라우저: chrome
  • 버전: 131.0.6778.109(공식 빌드) (arm64)
  • 4.10.1

설명

  • 다운로드 받은 모든 파일을 업로드 하였습니다.
  • 블로그 최초 진입시 무한 로딩이 걸립니다.
  • 스킨 적용해지 하면 정상 구동하고 있습니다.

발생 과정
블로그 최초 진입시 무한 로딩이 걸립니다.

스크린샷 및 링크
스크린샷 2024-12-10 오후 6 44 12
스크린샷 2024-12-10 오후 6 44 02
https://gilbert9172.tistory.com/

@Gilbert9172 Gilbert9172 added the bug Something isn't working label Dec 10, 2024
@kimkeonlee
Copy link

기존의 images 폴더안에 'script.A0ejksw5AKdUaTyVnjCQ.js' 583번째 줄에서 오류가 발생하는것 같습니다.

기존코드
setTitleToEditEntryFrame: function setTitleToEditEntryFrame() {
document.getElementById("editEntry").title = "Edit Entry";
}

윗 이슈에서 달아주셨던것 처럼 임시 주석처리하거나 기존 코드를 아래 코드로 수정하면 정상 작동 되는것 같아요!

setTitleToEditEntryFrame: function setTitleToEditEntryFrame() {
const editEntry = document.getElementById("editEntry");
if (editEntry) {
editEntry.title = "Edit Entry";
}
}

pronist added a commit that referenced this issue Dec 10, 2024
@pronist
Copy link
Owner

pronist commented Dec 10, 2024

@Gilbert9172 안녕하세요.

문제의 코드를 날리고 4.10.2 버전을 배포하였습니다.

확인해보시기 바랍니다.

@pronist pronist closed this as completed Dec 10, 2024
@Gilbert9172
Copy link
Author

@pronist 빠른 대응 감사합니다!!👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants