bt-core-app 1.2.1 → 1.2.2
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/dist/bt-core-app.js +1 -1
- package/package.json +1 -1
- package/src/composables/auth.ts +1 -0
- package/test/auth.test.ts +5 -0
package/dist/bt-core-app.js
CHANGED
|
@@ -18056,7 +18056,7 @@ function Xk(e) {
|
|
|
18056
18056
|
}
|
|
18057
18057
|
function _() {
|
|
18058
18058
|
var y;
|
|
18059
|
-
(y = a.value).timeZone ?? (y.timeZone = e.defaultTimeZone ?? Ks);
|
|
18059
|
+
a.value ?? (a.value = {}), (y = a.value).timeZone ?? (y.timeZone = e.defaultTimeZone ?? Ks);
|
|
18060
18060
|
}
|
|
18061
18061
|
function A() {
|
|
18062
18062
|
return a.value.timeZone ?? e.defaultTimeZone ?? Ks;
|
package/package.json
CHANGED
package/src/composables/auth.ts
CHANGED