fix: resolve all TypeScript build errors after Setting branch merge
This commit is contained in:
@@ -77,10 +77,10 @@ export function renderHwDashboard(container: HTMLElement) {
|
||||
</div>
|
||||
<div class="dashboard-card stat-card">
|
||||
<div class="stat-label">최신 도입 모델 (${latestYear}년)</div>
|
||||
<div class="stat-value" style="font-size: 1.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;" title="${latestAsset?.모델명 || '정보 없음'}">
|
||||
${latestAsset?.모델명 || '정보 없음'}
|
||||
<div class="stat-value" style="font-size: 1.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;" title="${(latestAsset as any)?.모델명 || '정보 없음'}">
|
||||
${(latestAsset as any)?.모델명 || '정보 없음'}
|
||||
</div>
|
||||
<div class="stat-footer">가장 최근 자산번호: ${latestAsset?.자산코드 || '-'}</div>
|
||||
<div class="stat-footer">가장 최근 자산번호: ${(latestAsset as any)?.자산코드 || '-'}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user