From b83a5dcd80eee90ee0a545eec4dcfa794eed0652 Mon Sep 17 00:00:00 2001
From: John Swinbank <swinbank@astron.nl>
Date: Tue, 27 Jul 2021 08:55:08 +0200
Subject: [PATCH] Clarify labelling of form fields
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

- Use the singular (you can only select one from each list; you can't select
  "workflows");
- Simplifying wording (nobody needs to see “ESFRI” here!).
---
 src/components/services/Interactive.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/services/Interactive.js b/src/components/services/Interactive.js
index 6e735db..8f45174 100644
--- a/src/components/services/Interactive.js
+++ b/src/components/services/Interactive.js
@@ -24,7 +24,7 @@ export default  function Interactive() {
         (event) => setJnotebookURL(list_of_jnotebooks.find((item) => item.name === event.target.value).url)
         }>
         <Form.Label>
-            <h3>Select ESCAPE ESFRI Jupyter Workflows (Notebooks)</h3>
+            <h3>Select an analysis workflow (Jupyter Notebook)</h3>
         </Form.Label>
         <Form.Control className="mt-1" as="select">
           {list_of_jnotebooks.map((option) => <option>{option.name}</option>)}
@@ -36,7 +36,7 @@ export default  function Interactive() {
         (event) => setIdaSystemURL(list_of_idaSystems.find((item) => item.name === event.target.value).url)
         }>
         <Form.Label>
-          <h3>Select ESCAPE Interactive Data Analysis Services</h3>
+          <h3>Select an analysis service</h3>
         </Form.Label>
         <Form.Control className="mt-1" as="select">
           {list_of_idaSystems.map((option) => <option>{option.name}</option>)}
-- 
GitLab