changeset 4370:1e0d5c40b3f1

client: improve systemconfiguration classbreaks * Use even more width for a single classbreak field so that in case of invalid negative numbers with three digits after the decimal point (e.g. `-0.051`), we can still half the of the right most digit to understand the reason for the problem. * Improve warning message, to leave of the `Please check` part. It is less significant and obvious to the user, because the values have to be checked and corrected before the code allows sending of the new config.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 11 Sep 2019 10:30:07 +0200
parents 7c91cb922352
children 4a5ed371011f
files client/src/components/systemconfiguration/MorphologyClassbreaks.vue
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/systemconfiguration/MorphologyClassbreaks.vue	Wed Sep 11 10:00:52 2019 +0200
+++ b/client/src/components/systemconfiguration/MorphologyClassbreaks.vue	Wed Sep 11 10:30:07 2019 +0200
@@ -221,7 +221,7 @@
  border-color: #ff0000
 
 .classbreak
-  width: 150px
+  width: 154px
   .btn-outline-secondary
     border-color: #ccc
     color: #ccc
@@ -310,7 +310,7 @@
     // check if the same value is used for more than one field.
     hasDoublettes(m, compare) {
       const errorMessage = this.$gettext(
-        "Same value is used in multiple fields.  Please check"
+        "Same value is used in multiple fields."
       );
       let values = [];
       for (let i = 0; i < m.length; i++) {
@@ -329,7 +329,7 @@
     },
     valuesAreValid(m, compare) {
       const errorMessage = this.$gettext(
-        "There are invalid classbreak values. Please check"
+        "There are invalid classbreak values."
       );
       let values = m.map(e => {
         const element = e[0];