회의록 공유 화면 삭제에 따른 링크 수정

- 07-회의종료.html의 깨진 링크 제거
- 하단 액션 바에서 "공유" 버튼 제거
- 회의록 확정 후 대시보드로 이동하도록 변경

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yabo0812 2025-10-23 11:40:18 +09:00
parent 94399af741
commit b9ff435a5c

View File

@ -296,9 +296,6 @@
<!-- 하단 액션 바 --> <!-- 하단 액션 바 -->
<div class="action-bar"> <div class="action-bar">
<button class="btn btn-secondary" onclick="navigateTo('08-회의록공유.html')">
공유
</button>
<button class="btn btn-secondary" onclick="navigateTo('11-회의록수정.html')"> <button class="btn btn-secondary" onclick="navigateTo('11-회의록수정.html')">
수정 수정
</button> </button>
@ -447,9 +444,7 @@
function confirmMeeting() { function confirmMeeting() {
if (confirm('회의록을 최종 확정하시겠습니까?\n확정 후에는 Todo가 자동 할당됩니다.')) { if (confirm('회의록을 최종 확정하시겠습니까?\n확정 후에는 Todo가 자동 할당됩니다.')) {
showToast('회의록이 확정되었습니다', 'success'); showToast('회의록이 확정되었습니다', 'success');
setTimeout(() => { navigateTo('02-대시보드.html');
navigateTo('08-회의록공유.html');
}, 1500);
} }
} }