Skip to content

Commit

Permalink
download sync
Browse files Browse the repository at this point in the history
  • Loading branch information
salimkanoun committed Jun 27, 2021
1 parent e245113 commit 7164602
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion FrontEnd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orthanctoolsjsfront",
"version": "0.6.2",
"version": "0.6.7",
"proxy": "http://localhost:4000",
"private": true,
"dependencies": {
Expand Down
8 changes: 4 additions & 4 deletions FrontEnd/src/services/exportDicom.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ const exportDicom = {
let body = { }
if (TS !== 'None') {
body = {
Synchronous: false,
Synchronous: true,
Resources: OrthancIDsArray,
Transcode: TS
}
} else {
body = {
Synchronous: false,
Synchronous: true,
Resources: OrthancIDsArray
}
}
Expand All @@ -39,13 +39,13 @@ const exportDicom = {
let body = {}
if (TS !== 'None') {
body = {
Synchronous: false,
Synchronous: true,
Resources: OrthancIDsArray,
Transcode: TS
}
} else {
body = {
Synchronous: false,
Synchronous: true,
Resources: OrthancIDsArray
}
}
Expand Down

0 comments on commit 7164602

Please sign in to comment.