From 85ad71d9649a3ce1bae5521c3cce53b7e85282f2 Mon Sep 17 00:00:00 2001 From: wildscotsmen Date: Thu, 18 Oct 2018 15:39:52 -0400 Subject: [PATCH] Changed language used for Likert scale. --- src/components/ReportForm.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ReportForm.js b/src/components/ReportForm.js index 77a22a3..c0d4a0a 100644 --- a/src/components/ReportForm.js +++ b/src/components/ReportForm.js @@ -175,11 +175,11 @@ const timeTypes = [ const confidenceLevels = [ { value: '1', - label: '1 - Strongly unconfident', + label: '1 - Not at all confident', }, { value: '2', - label: '2 - Unconfident', + label: '2 - Slightly confident', }, { value: '3', @@ -187,11 +187,11 @@ const confidenceLevels = [ }, { value: '4', - label: '4 - Confident', + label: '4 - Fairly confident', }, { value: '5', - label: '5 - Very confident', + label: '5 - Completely confident', }, ];