diff --git a/api/tacticalrmm/tacticalrmm/settings.py b/api/tacticalrmm/tacticalrmm/settings.py index 0997f0b8..b6228704 100644 --- a/api/tacticalrmm/tacticalrmm/settings.py +++ b/api/tacticalrmm/tacticalrmm/settings.py @@ -11,7 +11,7 @@ AUTH_USER_MODEL = "accounts.User" # bump this version everytime vue code is changed # to alert user they need to manually refresh their browser -APP_VER = "0.0.62" +APP_VER = "0.0.63" # https://github.com/wh1te909/salt LATEST_SALT_VER = "1.1.0" diff --git a/web/src/views/Login.vue b/web/src/views/Login.vue index b830a73e..d23e7ffa 100644 --- a/web/src/views/Login.vue +++ b/web/src/views/Login.vue @@ -2,7 +2,7 @@ - +
Tactical RMM
@@ -15,7 +15,7 @@ v-model="credentials.username" label="Username" lazy-rules - :rules="[ val => val && val.length > 0 || 'This field is required']" + :rules="[val => (val && val.length > 0) || 'This field is required']" />
@@ -44,7 +44,7 @@ autofocus outlined v-model="credentials.twofactor" - :rules="[ val => val && val.length > 0 || 'This field is required']" + :rules="[val => (val && val.length > 0) || 'This field is required']" /> @@ -87,7 +87,6 @@ export default { localStorage.setItem("user_name", username); this.$store.commit("retrieveToken", { token, username }); this.$router.push({ name: "TOTPSetup" }); - this; } else { this.prompt = true; }