adminforth 1.5.4-next.8 → 1.5.4-next.9
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.
|
@@ -22,11 +22,17 @@ export const useUserStore = defineStore('user', () => {
|
|
|
22
22
|
async function finishLogin() {
|
|
23
23
|
const coreStore = useCoreStore();
|
|
24
24
|
authorize(); // TODO not sure we need this approach with localStorage
|
|
25
|
+
// print traceback to this place
|
|
26
|
+
try {
|
|
27
|
+
null.test();
|
|
28
|
+
} catch (e) {
|
|
29
|
+
console.log(e);
|
|
30
|
+
}
|
|
31
|
+
|
|
25
32
|
reconnect();
|
|
26
33
|
await router.push('/');
|
|
27
34
|
await router.isReady();
|
|
28
35
|
await coreStore.fetchMenuAndResource();
|
|
29
|
-
|
|
30
36
|
}
|
|
31
37
|
|
|
32
38
|
async function logout() {
|