-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/25: 메인 화면 스캔 이력 카드 탐색 및 결과 이동 구현 #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0c38444
feat: 스캔 이력 아이템 클릭 시 상태별 결과 화면(Safe/Warning/Critical) 연동
Ahreum02 ada34ae
feat: QR 스캔 화면 내 전체보기 연결 및 최신 이력 요약 표시
Ahreum02 5d97f14
feat: 메인 화면 스캔 이력 카드 탐색 및 상태별 결과 이동 구현
Ahreum02 c60247f
fix: 이력 카드 내 중첩된 인터랙티브 요소 분리 및 클릭 이벤트 최적화
Ahreum02 badf22a
fix: Vite 보안 취약점 해결을 위한 패키지 버전 업데이트
Ahreum02 48ac171
fix: QR 스캔 이력 레이아웃 깨짐 및 텍스트 오버플로우 수정
Ahreum02 ce38671
fix: 버튼 비활성화 스타일 보정 및 배지 영역 텍스트 겹침 수정
Ahreum02 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aria-label때문에 카드 본문 정보가 보조기기에서 사라질 수 있습니다.Line 270의
aria-label이 버튼 안의 가시 텍스트(스캔 시각, URL, 상태 설명)를 accessible name으로 덮어써서, 스크린리더 사용자는 어떤 기록을 여는지 알기 어렵습니다. 이 버튼은aria-label을 제거해 본문을 그대로 읽히게 하거나,aria-labelledby/aria-describedby로 “결과 페이지로 이동”만 보조 설명으로 붙이는 편이 안전합니다.🤖 Prompt for AI Agents