CacheEnd now shows reward correctly

This commit is contained in:
Timo Volkmann 2019-04-29 22:17:58 +02:00
parent 8636443f87
commit 2536996b16

View File

@ -52,7 +52,7 @@
this.$axios.get('/api/allCaches')
.then((response) => {
console.log("/api/allCaches");
console.log(JSON.stringify(this.response.data));
console.log(JSON.stringify(response.data));
console.log(response.data);
const cache = response.data.find(cache => cache.id === Number(this.$route.params.cache));
this.cache = cache;