ecinc-cloud-mappaio 9.7.66 → 9.7.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ecmappaio.common.js
CHANGED
|
@@ -58290,7 +58290,7 @@ var auth_install = function install(Vue) {
|
|
|
58290
58290
|
return token === 'undefined' ? null : token;
|
|
58291
58291
|
},
|
|
58292
58292
|
getCookieToken: function getCookieToken() {
|
|
58293
|
-
token = js_cookie_default().get(TokenKey);
|
|
58293
|
+
var token = js_cookie_default().get(TokenKey);
|
|
58294
58294
|
if (!token) {
|
|
58295
58295
|
if (port === '-') {
|
|
58296
58296
|
token = js_cookie_default().get(window.jwtTokenKey || 'ECWEB-JWTSSO-TOKEN');
|
package/lib/ecmappaio.umd.js
CHANGED
|
@@ -58308,7 +58308,7 @@ var auth_install = function install(Vue) {
|
|
|
58308
58308
|
return token === 'undefined' ? null : token;
|
|
58309
58309
|
},
|
|
58310
58310
|
getCookieToken: function getCookieToken() {
|
|
58311
|
-
token = js_cookie_default().get(TokenKey);
|
|
58311
|
+
var token = js_cookie_default().get(TokenKey);
|
|
58312
58312
|
if (!token) {
|
|
58313
58313
|
if (port === '-') {
|
|
58314
58314
|
token = js_cookie_default().get(window.jwtTokenKey || 'ECWEB-JWTSSO-TOKEN');
|