Skip to content

Commit

Permalink
[BUGFIXED]- Github bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ndasanayaka committed Jul 16, 2024
1 parent 5a4b8f1 commit b571508
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/api/FilesAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,15 @@ export default {
},

// copy folder
async copy(usermail, sources, dest, parallel, deleteSource) {
async copy(usermail, sources, dest, parallel, deleteSource, copy) {
const { data } = await request.get(`${Vue.prototype.$Config.endpoints.wiener}/api/execute/copybase64`, {
params: {
usermail: usermail,
sources: btoa(sources),
dest: btoa(dest),
parallel: parallel,
deleteSource: deleteSource
deleteSource: deleteSource,
copy: copy
}
})
return data
Expand Down
4 changes: 2 additions & 2 deletions src/views/Deconvolution.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,7 @@
}
}
/* validate devices in device tab */
/* if(this.workingItem.step === 7) {
if(this.workingItem.step === 7) {
let msg
let jobs = this.workingItem.setting.instances
let mem = this.workingItem.setting.mem
Expand Down Expand Up @@ -1589,7 +1589,7 @@
return
}
}
} */
}
if(this.workingItem.step === 8)
return
//even if current step is invalid, next will allow it to go if it has been visited
Expand Down

0 comments on commit b571508

Please sign in to comment.