|
3 | 3 | <v-stepper v-model="step" elevation="0" vertical class="ml-0 pl-0 mb-4"> |
4 | 4 | <!----------------- STEP 1 -------------------> |
5 | 5 | <v-stepper-step :complete="step > 1" step="1"> |
6 | | - Select the source of the software's metadata |
| 6 | + <div class="text-h6">Choose a metadata source</div> |
7 | 7 | </v-stepper-step> |
8 | 8 | <v-stepper-content step="1"> |
| 9 | + <p class="text-body-2">Select how you want to start the evaluation.</p> |
9 | 10 | <v-row |
10 | 11 | justify="space-around" |
11 | 12 | class="mb-4 mt-4 mr-0 ml-0 d-flex align-center" |
|
28 | 29 | <v-col cols="3" md="3" sm="7"> |
29 | 30 | <EvaluationSourceCard |
30 | 31 | title="GitHub repository" |
31 | | - description="Enter the URL of the software's GitHub repository" |
| 32 | + description="Provide the URL of the software's GitHub repository" |
32 | 33 | source="github" |
33 | 34 | icon="mdi-github" |
34 | 35 | > |
|
55 | 56 |
|
56 | 57 | <!----------------- STEP 2 -------------------> |
57 | 58 | <v-stepper-step :complete="step > 2" step="2"> |
58 | | - Introduce software to evaluate |
| 59 | + <div class="text-h6">Introduce software to evaluate</div> |
59 | 60 | </v-stepper-step> |
60 | 61 | <v-stepper-content v-if="source === 'github'" step="2"> |
61 | 62 | <GitHubInput /> |
|
73 | 74 |
|
74 | 75 | <!---------------- STEP 3 --------------------> |
75 | 76 | <v-stepper-step :complete="step > 3" step="3"> |
76 | | - Edit the metadata if needed |
| 77 | + <div class="text-h6">Edit the metadata if needed</div> |
77 | 78 | </v-stepper-step> |
78 | 79 |
|
79 | 80 | <v-stepper-content step="3"> |
|
82 | 83 | <!--------------------------------------------> |
83 | 84 |
|
84 | 85 | <!---------------- STEP 4 --------------------> |
85 | | - <v-stepper-step step="4"> Results </v-stepper-step> |
| 86 | + <v-stepper-step step="4"> |
| 87 | + <div class="text-h6"> |
| 88 | + Results: FAIRsoft scores, metadata, citation file |
| 89 | + </div> |
| 90 | + </v-stepper-step> |
86 | 91 | <v-stepper-content step="4"> |
87 | 92 | <ResultsTabs /> |
88 | 93 | </v-stepper-content> |
|
0 commit comments