diff client/src/components/identify/Identify.vue @ 4350:e4e32c77ed83

identify: improve legend. Keepalive keeps nash sutcliffe in component
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 09 Sep 2019 14:34:17 +0200
parents 4ed2708234b9
children 5356fd2ea3f6
line wrap: on
line diff
--- a/client/src/components/identify/Identify.vue	Mon Sep 09 14:24:14 2019 +0200
+++ b/client/src/components/identify/Identify.vue	Mon Sep 09 14:34:17 2019 +0200
@@ -264,8 +264,8 @@
       const nsc72 = this.config.gm_forecast_vs_reality_nsc_72h;
       const messagesPerState = {
         OK: this.$gettext("Nash-Sutcliffe") + `>${nsc24} /24h >${nsc72} / 72h`,
-        WARNING: this.$gettext("Nash-Sutcliffe") + ` < ${nsc72}`,
-        DANGER: this.$gettext("Nash-Sutcliffe") + ` < ${nsc24}`,
+        WARNING: this.$gettext("Nash-Sutcliffe") + ` < ${nsc72} / 72h`,
+        DANGER: this.$gettext("Nash-Sutcliffe") + ` < ${nsc24} / 72h`,
         NEUTRAL: this.$gettext("Nash-Sutcliffe not available")
       };
       return messagesPerState[this.gaugeStatus];
@@ -278,8 +278,8 @@
       const nsc72 = this.config.gm_forecast_vs_reality_nsc_72h;
       const messagesPerState = {
         OK: this.$gettext("Nash-Sutcliffe") + `>${nsc24} /24h >${nsc72} / 72h`,
-        WARNING: this.$gettext("Nash-Sutcliffe") + ` < ${nsc72}`,
-        DANGER: this.$gettext("Nash-Sutcliffe") + ` < ${nsc24}`,
+        WARNING: this.$gettext("Nash-Sutcliffe") + ` < ${nsc72} / 72h`,
+        DANGER: this.$gettext("Nash-Sutcliffe") + ` < ${nsc24} / 72h`,
         NEUTRAL: this.$gettext("Nash-Sutcliffe not available")
       };
       return messagesPerState[this.refGaugeStatus];