There was an error while loading. Please reload this page.
1 parent 978ebc2 commit d7bfc4bCopy full SHA for d7bfc4b
1 file changed
frontend/src/pages/oj/views/problem/problemSolving/Problem.vue
@@ -774,8 +774,8 @@ export default {
774
775
this.leftPainActiveTab = "submission"
776
this.lastSubmissionId = id
777
- // 통과(Accepted=0)하지 못한 결과면 질문 유도 넛지 표시
778
- this.showAskNudge = this.result.result !== 0
+ // 통과(Accepted=0)하지 못한 결과면 질문 유도 넛지 표시 (대회에서는 질문 기능 자체가 없으므로 제외)
+ this.showAskNudge = !this.isContestProblem && this.result.result !== 0
779
780
clearTimeout(this.refreshStatus)
781
this.init({
0 commit comments