feat: Phase 1D+2 — 모바일 대응, 스마트 그룹, 메모, 태그 편집
- 모바일: 카드 클릭 시 detail 페이지로 이동 (뷰어 패널 미표시) - 스마트 그룹: 사이드바에 최근 7일/법령 알림/이메일 프리셋 필터 - 메모: user_note 컬럼 추가 (migration 004), PATCH API, PreviewPanel 인라인 편집 - 태그 편집: PreviewPanel에서 태그 추가(+)/삭제(×) 기능 - DB 모델 + API 스키마 user_note 필드 추가 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -24,6 +24,11 @@
|
||||
}
|
||||
|
||||
function handleClick() {
|
||||
// 모바일에서는 항상 detail 페이지로 이동
|
||||
if (window.innerWidth < 1024) {
|
||||
goto(`/documents/${doc.id}`);
|
||||
return;
|
||||
}
|
||||
if (onselect) {
|
||||
onselect(doc);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user