Skip to content

Commit

Permalink
Merge pull request #1901 from freqtrade/dependabot/npm_and_yarn/main/…
Browse files Browse the repository at this point in the history
…bootstrap-f3749fb99a

Bump bootstrap-vue-next from 0.18.1 to 0.19.0 in the bootstrap group
  • Loading branch information
xmatthias authored May 29, 2024
2 parents 4a5c136 + f5d7c28 commit 5f7eaa6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/stores/pairlistConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5f7eaa6

Please sign in to comment.