Skip to content

Commit

Permalink
Merge pull request #268 from quhaiyue/develop
Browse files Browse the repository at this point in the history
fix: psi cancel bug
  • Loading branch information
quhaiyue authored Jul 4, 2024
2 parents 1e9d33f + 89132b4 commit 681627d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion primihub-webconsole/package-lock.json

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

2 changes: 1 addition & 1 deletion primihub-webconsole/src/views/PSI/list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export default {
}).catch(() => {})
},
async cancelTask(row) {
const res = await cancelTask(row.taskId)
const res = await cancelTask(row.taskIdName)
if (res.code === 0) {
const posIndex = this.allDataPsiTask.findIndex(item => item.taskId === row.taskId)
this.allDataPsiTask[posIndex].taskState === 4
Expand Down
2 changes: 1 addition & 1 deletion primihub-webconsole/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
},
proxy: {
'/dev-api': {
target: 'http://192.168.99.13:32733',
target: '',
ws: true,
changeOrigin: true,
pathRewrite: {
Expand Down

0 comments on commit 681627d

Please sign in to comment.