diff client/src/components/Bottlenecks.vue @ 2435:3679d604645e

client: renamed store action There will be a second action to load bottlenecks with all properties like for the map. So I renamed the old action to loadBottleneckList. The new one will then be named loadBottlenecks... or loadBottlenecksFull or sth.
author Markus Kottlaender <markus@intevation.de>
date Fri, 01 Mar 2019 08:28:00 +0100
parents f185503ef35a
children 64ff5984351e
line wrap: on
line diff
--- a/client/src/components/Bottlenecks.vue	Fri Mar 01 08:18:29 2019 +0100
+++ b/client/src/components/Bottlenecks.vue	Fri Mar 01 08:28:00 2019 +0100
@@ -287,7 +287,7 @@
     }
   },
   mounted() {
-    this.$store.dispatch("bottlenecks/loadBottlenecks");
+    this.$store.dispatch("bottlenecks/loadBottlenecksList");
   }
 };
 </script>