diff --git a/README.md b/README.md
index bc4b6163..11bb2fbc 100644
--- a/README.md
+++ b/README.md
@@ -83,9 +83,6 @@ See the [Nuxt documentation](https://nuxtjs.org/deployments/github-pages/) for m
There are two means of moving forward to the next step in the annotation tool's workflow: (1) the navbar at the top right of the screen which features the page names, and (2) the next page buttons on the bottom right of each page.
-:warning: Do not use the browser back/forward buttons for navigation as this is currently a limitation of the tool
-that may lead to breaking the workflow.
-
Certain criteria for each page need to be be met in order to move forward. Instructions are offered above the next page button. Once the criteria have been met navbar and next page button will turn from gray to green.
## Testing
diff --git a/components/annot-explanation.vue b/components/annot-explanation.vue
index d2a0b2fa..abe54b41 100644
--- a/components/annot-explanation.vue
+++ b/components/annot-explanation.vue
@@ -7,7 +7,11 @@
{{ uiText.cardTitle }}
- {{ explanationText }}
+
diff --git a/components/next-page.vue b/components/next-page.vue
index 1749254d..b7dfcf38 100644
--- a/components/next-page.vue
+++ b/components/next-page.vue
@@ -59,7 +59,7 @@
"home": "",
"categorization": "One column must be categorized as 'Subject ID' and all assessment tools must be grouped to proceed",
- "annotation": ""
+ "annotation": "One categroized column must be annotated to proceed"
}
}
};
diff --git a/store/index.js b/store/index.js
index 8d429144..7e9dee76 100644
--- a/store/index.js
+++ b/store/index.js
@@ -27,6 +27,7 @@ export const state = () => ({
"Diagnosis": diagnosisTerms
},
+ // The explanation strings for each category, will be split by '.' and turned into bullet points in the annot-explanation component
categories: {
"Subject ID": {
@@ -36,25 +37,25 @@ export const state = () => ({
"Age": {
componentName: "annot-continuous-values",
- explanation: "This is an explanation for how to annotate age.",
+ explanation: "Review the annotated columns for Age. Mark missing values. Select a transformation heuristic, check the preview, and finalize the harmonization",
identifier: "nb:Age"
},
"Sex": {
componentName: "annot-categorical",
- explanation: "This is an explanation for how to annotate sex.",
+ explanation: "Review the annotated columns for Sex. Mark missing values. Annotate each unique value from the dropdown, and finalize the harmonization",
identifier: "nb:Sex"
},
"Diagnosis": {
componentName: "annot-categorical",
- explanation: "This is an explanation for how to annotate diagnosis.",
+ explanation: "Review the annotated columns for Diagnosis. Mark missing values. Annotate each unique value from the dropdown, and finalize the harmonization",
identifier: "nb:Diagnosis"
},
"Assessment Tool": {
componentName: "annot-tool-groups",
- explanation: "This is an explanation for how to annotate a tool.",
+ explanation: "Review the annotated columns for Assessment Tool. Mark missing values for each tool",
identifier: "nb:AssessmentTool"
}
},