File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
frontend/components/organisms/projects Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 3838 data-test =" project-type"
3939 required
4040 />
41+ <v-checkbox
42+ v-model =" enableRandomizeDocOrder"
43+ label =" Randomize document order"
44+ />
45+ <v-checkbox
46+ v-model =" enableShareAnnotation"
47+ label =" Share annotations across all users"
48+ />
4149 </v-form >
4250 </template >
4351 </base-card >
@@ -72,6 +80,8 @@ export default {
7280 name: ' ' ,
7381 description: ' ' ,
7482 projectType: null ,
83+ enableShareAnnotation: false ,
84+ enableRandomizeDocOrder: false ,
7585 projectNameRules,
7686 projectTypeRules,
7787 descriptionRules
@@ -113,9 +123,9 @@ export default {
113123 description: this .description ,
114124 project_type: this .getServerType (),
115125 guideline: ' Please write annotation guideline.' ,
116- resourcetype: this .getResourceType ()
117- // randomize_document_order: this.randomizeDocumentOrder ,
118- // collaborative_annotation: this.collaborativeAnnotation
126+ resourcetype: this .getResourceType (),
127+ randomize_document_order: this .enableRandomizeDocOrder ,
128+ collaborative_annotation: this .enableShareAnnotation
119129 })
120130 this .reset ()
121131 this .cancel ()
You can’t perform that action at this time.
0 commit comments