Skip to content

Commit

Permalink
Merge pull request #1553 from Program-AR/showing-expects
Browse files Browse the repository at this point in the history
Fix no se muestran los expects
  • Loading branch information
dlopezalvas committed Mar 18, 2024
2 parents c8ddf9b + 7d739c9 commit 1742f37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/experiments.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export default Service.extend({
},

isNotAffected() {
return !(this.isTreatmentGroup() || this.isControlGroup())
return this.experimentGroup() === this.possibleGroups[2]
},

isOff(){
return this.experimentGroup() === "off"
return this.experimentGroup() === this.possibleGroups[3]
},

isAutoAssignStrategy() {
Expand Down

0 comments on commit 1742f37

Please sign in to comment.