Skip to content

Commit

Permalink
import, export SRS experiment and setting random assign algo as default
Browse files Browse the repository at this point in the history
  • Loading branch information
Yagnik56 committed Sep 26, 2023
1 parent 4e9e87e commit 9ab8c97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ export class ExperimentService {
'conditions.conditionPayloads',
'conditions.levelCombinationElements',
'conditions.levelCombinationElements.level',
'stratificationFactor',
],
});
const formatedExperiments = experimentDetails.map((experiment) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export class ExperimentOverviewComponent implements OnInit, OnDestroy {
consistencyRule: [null, Validators.required],
conditionOrder: [null],
designType: [ExperimentDesignTypes.SIMPLE, Validators.required],
assignmentAlgorithm: [null, Validators.required],
assignmentAlgorithm: [ASSIGNMENT_ALGORITHM.RANDOM, Validators.required],
stratificationFactor: [null],
context: [null, Validators.required],
tags: [[]],
Expand Down

0 comments on commit 9ab8c97

Please sign in to comment.