fix(web-ui): 작업 분석 페이지 모듈 로딩 오류 수정
작업 분석 페이지에서 발생하던 JavaScript 모듈 로딩 오류를 해결했습니다. 문제점: - SyntaxError: import call expects one or two arguments - ReferenceError: Can't find variable: apiCall - 네비게이션 바 미표시 해결 방법: - api-config.js, load-navbar.js, work-analysis.js에 type="module" 추가 - work-analysis.js에서 api-config.js import하여 로딩 순서 보장 - 스크립트 버전 업데이트 (캐시 클리어) 수정된 파일: - web-ui/pages/analysis/work-analysis.html: 스크립트 태그에 type="module" 추가 - web-ui/js/work-analysis.js: api-config.js import 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
// 작업 분석 페이지 JavaScript
|
||||
|
||||
// API 설정 import
|
||||
import './api-config.js';
|
||||
|
||||
// 전역 변수
|
||||
let currentMode = 'period';
|
||||
let currentTab = 'worker';
|
||||
|
||||
Reference in New Issue
Block a user