CASH-183 | Bug fix
This commit is contained in:
parent
c3d1ae6b5f
commit
11f3b06e6f
1 changed files with 5 additions and 3 deletions
|
|
@ -1294,10 +1294,12 @@ export const actions = {
|
|||
) {
|
||||
const experiments = deepClone(context.getters.applicationUser.experiments);
|
||||
const experimentToMarkAsExposed = experiments.find((ex) => {
|
||||
ex.universeId == experiment.universeId &&
|
||||
ex.testId == experiment.testIde &&
|
||||
return (
|
||||
ex.universeId == experiment.universeId &&
|
||||
ex.testId == experiment.testId &&
|
||||
ex.variationId == experiment.variationId &&
|
||||
ex.assignmentId == experiment.assignmentId;
|
||||
ex.assignmentId == experiment.assignmentId
|
||||
);
|
||||
});
|
||||
if (experimentToMarkAsExposed) {
|
||||
experimentToMarkAsExposed.isExposed = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue