Skip to content

Commit d7bfc4b

Browse files
authored
#748 대회 문제 오답 시 질문하기 넛지 안 뜨도록 수정 (#752)
대회는 질문하기 탭/커뮤니티가 있어도 물어보면서 하는게 대회가 아니지만 오답 넛지가 떠서 이동 시 갈 곳이 없던 문제 수정. showAskNudge를 !isContestProblem 조건으로 제한.
1 parent 978ebc2 commit d7bfc4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • frontend/src/pages/oj/views/problem/problemSolving

frontend/src/pages/oj/views/problem/problemSolving/Problem.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,8 +774,8 @@ export default {
774774
775775
this.leftPainActiveTab = "submission"
776776
this.lastSubmissionId = id
777-
// 통과(Accepted=0)하지 못한 결과면 질문 유도 넛지 표시
778-
this.showAskNudge = this.result.result !== 0
777+
// 통과(Accepted=0)하지 못한 결과면 질문 유도 넛지 표시 (대회에서는 질문 기능 자체가 없으므로 제외)
778+
this.showAskNudge = !this.isContestProblem && this.result.result !== 0
779779
780780
clearTimeout(this.refreshStatus)
781781
this.init({

0 commit comments

Comments
 (0)