Skip to content
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

[Fix] 점수 입력 모달 클릭 안 됨 #1190 #1191

Merged
merged 2 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/modal/statChange/StatChangeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function StatChangeModal({ gameId, mode }: Exp) {
};

return (
<>
<div>
<div
className={`${styles.fixedContainer} ${styles.front}`}
onClick={closeModal}
Expand All @@ -68,6 +68,6 @@ export default function StatChangeModal({ gameId, mode }: Exp) {
)}
<div className={styles.guide}>화면을 클릭해주세요!</div>
</div>
</>
</div>
);
}
6 changes: 5 additions & 1 deletion components/tournament/TournamentMatch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ function TournamentMatchParty({
position: relative 혹은 absolute 가 적용되어있어야 하는데, 그럴 경우 브라켓에서 이미지가 벗어나는
문제가 있으므로 임시 방편으로 img 태그를 사용합니다. */}
<div className={styles.imageWrap}>
<img src={party.picture} className={styles.playerImage} alt='player' />
<img
src={party.picture ?? 'image/match_qustion.png'}
className={styles.playerImage}
alt='player'
/>
</div>
<div className={styles.partyName}>{party.name || teamNameFallback}</div>
<div className={styles.score}>
Expand Down