aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBram Ceulemans <bramceulemans@me.com>2020-12-09 22:57:35 +0100
committerBram Ceulemans <bramceulemans@me.com>2020-12-09 22:57:35 +0100
commit273a268ac4b9637e28522e2a9f6d543c43761380 (patch)
treec7895ff43122c46b1945f149539b15c4403dadb6
parentc5eab80d765ab03155399ce669c25cc17eb736c9 (diff)
downloadhomer-273a268ac4b9637e28522e2a9f6d543c43761380.tar.gz
homer-273a268ac4b9637e28522e2a9f6d543c43761380.tar.zst
homer-273a268ac4b9637e28522e2a9f6d543c43761380.zip
Remove unused computed property
-rw-r--r--src/components/services/PiHole.vue6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/components/services/PiHole.vue b/src/components/services/PiHole.vue
index 47b1261..10d5ece 100644
--- a/src/components/services/PiHole.vue
+++ b/src/components/services/PiHole.vue
@@ -50,12 +50,6 @@ export default {
50 }; 50 };
51 }, 51 },
52 computed: { 52 computed: {
53 percentage: function () {
54 if (this.status) {
55 return this.status.ads_percentage_today.toFixed(1);
56 }
57 return "";
58 },
59 blocked: function () { 53 blocked: function () {
60 if (this.status) { 54 if (this.status) {
61 return this.status.dns_queries_today.toFixed(0); 55 return this.status.dns_queries_today.toFixed(0);