Skip to content
Snippets Groups Projects
Commit b83a5dcd authored by John Swinbank's avatar John Swinbank
Browse files

Clarify labelling of form fields

- Use the singular (you can only select one from each list; you can't select
  "workflows");
- Simplifying wording (nobody needs to see “ESFRI” here!).
parent 8c4b21f4
No related branches found
No related tags found
2 merge requests!42Don't provide default URLs for IDA services,!41Don't provide default URLs for IDA services
Pipeline #15722 passed
...@@ -24,7 +24,7 @@ export default function Interactive() { ...@@ -24,7 +24,7 @@ export default function Interactive() {
(event) => setJnotebookURL(list_of_jnotebooks.find((item) => item.name === event.target.value).url) (event) => setJnotebookURL(list_of_jnotebooks.find((item) => item.name === event.target.value).url)
}> }>
<Form.Label> <Form.Label>
<h3>Select ESCAPE ESFRI Jupyter Workflows (Notebooks)</h3> <h3>Select an analysis workflow (Jupyter Notebook)</h3>
</Form.Label> </Form.Label>
<Form.Control className="mt-1" as="select"> <Form.Control className="mt-1" as="select">
{list_of_jnotebooks.map((option) => <option>{option.name}</option>)} {list_of_jnotebooks.map((option) => <option>{option.name}</option>)}
...@@ -36,7 +36,7 @@ export default function Interactive() { ...@@ -36,7 +36,7 @@ export default function Interactive() {
(event) => setIdaSystemURL(list_of_idaSystems.find((item) => item.name === event.target.value).url) (event) => setIdaSystemURL(list_of_idaSystems.find((item) => item.name === event.target.value).url)
}> }>
<Form.Label> <Form.Label>
<h3>Select ESCAPE Interactive Data Analysis Services</h3> <h3>Select an analysis service</h3>
</Form.Label> </Form.Label>
<Form.Control className="mt-1" as="select"> <Form.Control className="mt-1" as="select">
{list_of_idaSystems.map((option) => <option>{option.name}</option>)} {list_of_idaSystems.map((option) => <option>{option.name}</option>)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment