fix: restore Cloud tab under SW menu, change date fields to yyyy-mm-dd, add start_date field

This commit is contained in:
2026-04-23 18:40:58 +09:00
parent 4b88ac01a4
commit d8a0c47fb3
3 changed files with 13 additions and 10 deletions

View File

@@ -34,6 +34,8 @@ export function renderSWTable(mainContent: HTMLElement) {
} else if (state.activeCategory === 'sw') {
if (tab === '구독SW' || tab === '영구SW') {
renderSwList(container);
} else if (tab === '클라우드') {
renderCloudList(container);
} else {
container.innerHTML = `<div style="padding:2rem; color:var(--text-muted);">"${tab}" 탭에 대한 소프트웨어 리스트 뷰가 정의되지 않았습니다.</div>`;
}