Merge branch 'hotfix/survey-hide-solutions' into develop
This commit is contained in:
commit
b0e89c34f7
|
|
@ -55,7 +55,7 @@ export default {
|
||||||
return this.survey && this.survey.isCompleted;
|
return this.survey && this.survey.isCompleted;
|
||||||
},
|
},
|
||||||
showSolution() {
|
showSolution() {
|
||||||
return (module.solutionsEnabled || isTeacher) && !this.survey.isCompleted;
|
return (this.module.solutionsEnabled || this.isTeacher) && !this.survey.isCompleted;
|
||||||
},
|
},
|
||||||
solution() {
|
solution() {
|
||||||
// todo: should this be done inside of Solution.vue?
|
// todo: should this be done inside of Solution.vue?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue