summaryrefslogtreecommitdiff
path: root/src/components/ServerStatus.vue
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2021-08-19 12:14:37 -0400
committergumi <git@gumi.ca>2021-08-19 12:21:16 -0400
commit802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543 (patch)
treeeed99a377249bdac523c275614925078e6e02167 /src/components/ServerStatus.vue
parentc3d48e0be54364cf14df4eb1c3ed49d74ae8ab6d (diff)
downloadwebsite-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.gz
website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.bz2
website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.xz
website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.zip
fix some typescript warnings
Diffstat (limited to 'src/components/ServerStatus.vue')
-rw-r--r--src/components/ServerStatus.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ServerStatus.vue b/src/components/ServerStatus.vue
index dd4eaa7..c5f6d3c 100644
--- a/src/components/ServerStatus.vue
+++ b/src/components/ServerStatus.vue
@@ -69,7 +69,7 @@ export default class ServerStatus extends Vue {
setTimeout(this.getStatus, 8000);
}
- mounted () {
+ mounted (): void {
// use the last cached value to populate prior to first fetch:
if (Reflect.has(self, "localStorage")) {
this.Players = +(localStorage.getItem("onlinePlayers") || 99);