diff --git a/package.json b/package.json index da457549..ff7e01ae 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "@vueuse/integrations": "^10.10.0", "axios": "^1.7.2", "bootstrap": "^5.3.3", - "bootstrap-vue-next": "^0.18.1", + "bootstrap-vue-next": "^0.19.0", "core-js": "^3.37.1", "date-fns": "^3.6.0", "date-fns-tz": "^3.1.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d78d2392..55a2aa37 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,8 +27,8 @@ dependencies: specifier: ^5.3.3 version: 5.3.3(@popperjs/core@2.11.8) bootstrap-vue-next: - specifier: ^0.18.1 - version: 0.18.1(vue@3.4.27) + specifier: ^0.19.0 + version: 0.19.0(vue@3.4.27) core-js: specifier: ^3.37.1 version: 3.37.1 @@ -1481,8 +1481,8 @@ packages: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true - /bootstrap-vue-next@0.18.1(vue@3.4.27): - resolution: {integrity: sha512-/NNFwGU1aC1l4MMGGP7ooY4YQtaej1eGKnQBxGskKhZLz05JDCmNdIpy1gKODzeZz8pYeyHF7288h0uLCRqWkQ==} + /bootstrap-vue-next@0.19.0(vue@3.4.27): + resolution: {integrity: sha512-IllkPA3NEND+G304oflIDkeNXclGPraAFMX+QEuHkm3oN7vexWMvWbroPvrC1v+rJbH335KoAjsL4DJXCJOKFQ==} peerDependencies: vue: ^3.4.27 dependencies: diff --git a/src/stores/pairlistConfig.ts b/src/stores/pairlistConfig.ts index e405dcb6..27b58137 100644 --- a/src/stores/pairlistConfig.ts +++ b/src/stores/pairlistConfig.ts @@ -151,7 +151,7 @@ export const usePairlistConfigStore = defineStore( const { job_id: jobId } = await botStore.activeBot.evaluatePairlist(payload); console.log('jobId', jobId); - intervalId.value = setInterval(async () => { + intervalId.value = window.setInterval(async () => { const res = await botStore.activeBot.getBackgroundJobStatus(jobId); if (!res.running) { clearInterval(intervalId.value);