diff --git a/src/Vinlottis.vue b/src/Vinlottis.vue index f57be97..6f05391 100644 --- a/src/Vinlottis.vue +++ b/src/Vinlottis.vue @@ -24,6 +24,7 @@ export default { + diff --git a/src/ui/WinGraph.vue b/src/ui/WinGraph.vue index 01f1511..125f466 100644 --- a/src/ui/WinGraph.vue +++ b/src/ui/WinGraph.vue @@ -9,11 +9,12 @@ export default { async mounted() { let canvas = this.$refs["win-chart"].getContext("2d"); - let _response = undefined - if (process.env.NODE_ENV == 'development') { - _response = await fetch("http://localhost:30030/api/purchase/statistics/color"); - } - else { + let _response = undefined; + if (process.env.NODE_ENV == "development") { + _response = await fetch( + "http://localhost:30030/api/purchase/statistics/color" + ); + } else { _response = await fetch("/api/purchase/statistics/color"); } let response = await _response.json(); diff --git a/src/ui/Wines.vue b/src/ui/Wines.vue index 2f06997..974dae7 100644 --- a/src/ui/Wines.vue +++ b/src/ui/Wines.vue @@ -42,7 +42,7 @@ h3 { } div { margin: 15px 0 0 0; - font-family: "knowit"; + font-family: arial; display: inline-flex; flex-direction: column; }