RSEMCS page default status values now reflect datatype.

This commit is contained in:
Harrison Deng 2022-01-19 16:31:22 -06:00
parent 39c003d6c8
commit 2170fc6c84

View File

@ -80,18 +80,18 @@ import axios from "axios";
export default {
data() {
return {
online: "loading...",
online: false,
motd: "loading...",
players: {
max: "loading...",
now: "loading..."
max: 0,
now: 0
},
server: {
name: "loading...",
protocol: "loading...",
},
lastOnline: "loading...",
lastUpdate: "loading..."
lastOnline: 0,
lastUpdate: 0
};
},
computed: {