Skip to content

Commit

Permalink
showing expects on off group
Browse files Browse the repository at this point in the history
  • Loading branch information
dlopezalvas committed Mar 15, 2024
1 parent c8ddf9b commit 7d739c9
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 7d739c9

Please sign in to comment.