File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ dependencies = [
3939 " pyyaml (>=6.0.2,<7.0.0)" ,
4040 " fastapi-mcp (>=0.3.4,<0.4.0)" ,
4141 " tabulate>=0.9.0" ,
42- " sqlbot-xpack>=0.0.3.36 ,<1.0.0" ,
42+ " sqlbot-xpack>=0.0.3.37 ,<1.0.0" ,
4343 " fastapi-cache2>=0.2.2" ,
4444 " sqlparse>=0.5.3" ,
4545 " redis>=6.2.0" ,
Original file line number Diff line number Diff line change @@ -3,13 +3,14 @@ import { useCache } from '@/utils/useCache'
33import { useAppearanceStoreWithOut } from '@/stores/appearance'
44import { useUserStore } from '@/stores/user'
55import { request } from '@/utils/request'
6+ import type { Router } from 'vue-router'
67
78const appearanceStore = useAppearanceStoreWithOut ( )
89const userStore = useUserStore ( )
910const { wsCache } = useCache ( )
1011const whiteList = [ '/login' ]
1112const assistantWhiteList = [ '/assistant' , '/embeddedPage' , '/401' ]
12- export const watchRouter = ( router : any ) => {
13+ export const watchRouter = ( router : Router ) => {
1314 router . beforeEach ( async ( to : any , from : any , next : any ) => {
1415 await loadXpackStatic ( )
1516 await appearanceStore . setAppearance ( )
You can’t perform that action at this time.
0 commit comments