Updated things, all ok except bug in v-text-field that was reported
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
/* xeslint-disable */
|
||||
import decode from "jwt-decode";
|
||||
//import decode from "jwt-decode";
|
||||
import jwt_decode from "jwt-decode";
|
||||
import initialize from "./initialize";
|
||||
import notifypoll from "./notifypoll";
|
||||
|
||||
@@ -20,7 +21,7 @@ export function processLogin(authResponse, loggedInWithKnownPassword) {
|
||||
);
|
||||
return reject();
|
||||
}
|
||||
const token = decode(authResponse.token);
|
||||
const token = jwt_decode(authResponse.token);
|
||||
|
||||
if (!token || !token.iss) {
|
||||
window.$gz.store.commit(
|
||||
@@ -111,7 +112,7 @@ export function isLoggedIn() {
|
||||
}
|
||||
|
||||
function getTokenExpirationDate(encodedToken) {
|
||||
const token = decode(encodedToken);
|
||||
const token = jwt_decode(encodedToken);
|
||||
if (!token.exp) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export default {
|
||||
version: "8.0.0-alpha.84",
|
||||
version: "8.0.0-alpha.86",
|
||||
copyright: "© 1999-2020, Ground Zero Tech-Works Inc."
|
||||
};
|
||||
|
||||
@@ -326,10 +326,6 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
This code written in Mid April 2020 about 4 weeks into Covid-19 self isolation
|
||||
It's just starting to look like BC has "flattened the curve", but other places are still a shit-show
|
||||
*/
|
||||
import marked from "marked";
|
||||
import DOMPurify from "dompurify";
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/* Xeslint-disable */
|
||||
import "typeface-roboto/index.css";
|
||||
//import "typeface-roboto/index.css";
|
||||
import "fontsource-roboto/latin.css";
|
||||
import "github-markdown-css";
|
||||
import Vue from "vue";
|
||||
import Vuetify from "./plugins/vuetify";
|
||||
@@ -60,7 +61,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
|
||||
//DEVELOPMENT MODE
|
||||
//THIS SHOULD BE FALSE IN RELEASE
|
||||
//************************************************************
|
||||
const DEV_MODE = false;
|
||||
const DEV_MODE = true;
|
||||
//************************************************************
|
||||
//**************************************************************
|
||||
//**************************************************************
|
||||
|
||||
Reference in New Issue
Block a user