comparison client/src/components/layers/Layers.vue @ 2851:a7e31594959d

profiles: difference selection now with spinner
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 28 Mar 2019 17:04:44 +0100
parents d0f6c222f4f9
children 35f6e4383161
comparison
equal deleted inserted replaced
2850:6d4f361c36e8 2851:a7e31594959d
55 }, 55 },
56 methods: { 56 methods: {
57 close() { 57 close() {
58 this.$store.commit("application/showLayers", false); 58 this.$store.commit("application/showLayers", false);
59 }, 59 },
60 visibilityToggled(layer) { 60 visibilityToggled(layername) {
61 this.$store.commit("map/toggleVisibility", layer); 61 this.$store.commit("map/toggleVisibilityByName", layername);
62 } 62 }
63 } 63 }
64 }; 64 };
65 </script> 65 </script>