feat: HW 모달 UI 고도화 및 자산 분류 체계 개편

This commit is contained in:
2026-06-09 13:56:05 +09:00
parent 3ab587d342
commit 4b408b0640
5 changed files with 241 additions and 303 deletions

View File

@@ -153,14 +153,8 @@ export function dynamicSort<T>(list: T[], key: string, direction: 'asc' | 'desc'
}
/**
* 목록 뷰용 액션 버튼 HTML 생성 (자산추가)
* 목록 뷰용 액션 버튼 HTML 생성 (중복 제거를 위해 비워둠)
*/
export function getActionButtonsHTML(): string {
return `
<div class="search-actions">
<button id="btn-add-asset" class="btn btn-primary">
<i data-lucide="plus"></i> 자산추가
</button>
</div>
`;
return '';
}