Merge pull request #1901 from freqtrade/dependabot/npm_and_yarn/main/bootstrap-f3749fb99a

Bump bootstrap-vue-next from 0.18.1 to 0.19.0 in the bootstrap group
This commit is contained in:
Matthias 2024-05-29 06:54:13 +02:00 committed by GitHub
commit 5f7eaa6122
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -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",

View File

@ -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:

View File

@ -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);