|
2 | 2 | <div class="card p-fluid">
|
3 | 3 | <div class="formgrid grid">
|
4 | 4 | <div class="field col-12 md:col-6">
|
5 |
| - <label for="uploadSetName">Cohort Name *</label> |
| 5 | + <label for="uploadSetName">Cohort Name</label> |
6 | 6 | <InputText
|
7 | 7 | v-model="formData.name"
|
8 | 8 | id="uploadSetName"
|
|
12 | 12 | />
|
13 | 13 | </div>
|
14 | 14 | <div class="field col-12 md:col-6">
|
15 |
| - <label for="totalSampleSize">Total Sample Size *</label> |
| 15 | + <label for="totalSampleSize">Total Sample Size</label> |
16 | 16 | <InputNumber
|
17 | 17 | v-model="formData.total_sample_size"
|
18 | 18 | id="totalSampleSize"
|
|
25 | 25 |
|
26 | 26 | <div class="formgrid grid">
|
27 | 27 | <div class="field col-12 md:col-6">
|
28 |
| - <label for="numberOfMales">Number of Males *</label> |
| 28 | + <label for="numberOfMales">Number of Males</label> |
29 | 29 | <InputNumber
|
30 | 30 | v-model="formData.number_of_males"
|
31 | 31 | id="numberOfMales"
|
|
35 | 35 | />
|
36 | 36 | </div>
|
37 | 37 | <div class="field col-12 md:col-6">
|
38 |
| - <label for="numberOfFemales">Number of Females *</label> |
| 38 | + <label for="numberOfFemales">Number of Females</label> |
39 | 39 | <InputNumber
|
40 | 40 | v-model="formData.number_of_females"
|
41 | 41 | id="numberOfFemales"
|
|
48 | 48 |
|
49 | 49 | <div class="formgrid grid">
|
50 | 50 | <div class="field col-12 md:col-6">
|
51 |
| - <label for="phenotypeCodingSystem">Phenotype coding system used by cohort *</label> |
| 51 | + <label for="phenotypeCodingSystem">Phenotype coding system used by cohort</label> |
52 | 52 | <InputText
|
53 | 53 | v-model="formData.phenotype_coding_system"
|
54 | 54 | id="phenotypeCodingSystem"
|
|
58 | 58 | />
|
59 | 59 | </div>
|
60 | 60 | <div class="field col-12 md:col-6">
|
61 |
| - <label for="industryAuthorship">Will industry partners be authors on any resulting publication *</label> |
| 61 | + <label for="industryAuthorship">Will industry partners be authors on any resulting publication</label> |
62 | 62 | <Dropdown
|
63 | 63 | v-model="formData.industry_authorship"
|
64 | 64 | id="industryAuthorship"
|
|
73 | 73 |
|
74 | 74 | <div class="formgrid grid">
|
75 | 75 | <div class="field col-12 md:col-6">
|
76 |
| - <label for="phenotypeMappingIssues">Were there any issues during phenotype mapping. If yes please explain *</label> |
| 76 | + <label for="phenotypeMappingIssues">Were there any issues during phenotype mapping. If yes please explain</label> |
77 | 77 | <Textarea
|
78 | 78 | v-model="formData.phenotype_mapping_issues"
|
79 | 79 | id="phenotypeMappingIssues"
|
|
83 | 83 | />
|
84 | 84 | </div>
|
85 | 85 | <div class="field col-12 md:col-6">
|
86 |
| - <label for="industryInvolvement">Is there any industry involvement in your data generation/project. If yes, please describe *</label> |
| 86 | + <label for="industryInvolvement">Is there any industry involvement in your data generation/project. If yes, please describe</label> |
87 | 87 | <Textarea
|
88 | 88 | v-model="formData.industry_involvement"
|
89 | 89 | id="industryInvolvement"
|
|
95 | 95 | </div>
|
96 | 96 |
|
97 | 97 | <div class="field">
|
98 |
| - <label for="dataRestrictions">Are there any restrictions on this data being made publicly available either before or after publication. If yes please describe *</label> |
| 98 | + <label for="dataRestrictions">Are there any restrictions on this data being made publicly available either before or after publication. If yes please describe</label> |
99 | 99 | <Textarea
|
100 | 100 | v-model="formData.data_restrictions"
|
101 | 101 | id="dataRestrictions"
|
|
111 | 111 | type="button"
|
112 | 112 | :label="saveButtonLabel"
|
113 | 113 | class="p-button-primary"
|
114 |
| - :icon="saveButtonIcon" |
115 | 114 | @click="handleSave"
|
116 | 115 | :loading="saving"
|
117 | 116 | :disabled="!canSave"
|
|
0 commit comments