From 2536996b169dbd2ecc86b4f5eaa8cfc635d66e11 Mon Sep 17 00:00:00 2001 From: Timo Volkmann Date: Mon, 29 Apr 2019 22:17:58 +0200 Subject: [PATCH] CacheEnd now shows reward correctly --- frontend/src/pages/CacheEnd.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/CacheEnd.vue b/frontend/src/pages/CacheEnd.vue index 77d71f6..7ba09e1 100644 --- a/frontend/src/pages/CacheEnd.vue +++ b/frontend/src/pages/CacheEnd.vue @@ -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;