Loading vospace-ui-backend/src/main/java/it/inaf/ia2/vospace/ui/controller/NodesController.java +4 −4 Original line number Diff line number Diff line Loading @@ -142,8 +142,8 @@ public class NodesController extends BaseController { String direction = getRequiredParam(params, "direction"); Transfer transfer = new Transfer(); transfer.setTarget(target); transfer.setDirection(direction); transfer.setTarget("vos://" + authority + target); transfer.setDirection("vos://" + authority + direction); JobSummary job = client.startTransferJob(transfer); Loading vospace-ui-frontend/src/components/modal/RenameModal.vue +1 −1 Original line number Diff line number Diff line Loading @@ -53,7 +53,7 @@ export default { } else if (/[<>?":\\/`|'*]/.test(this.newName)) { this.newNameError = "Name contains an illegal character. Following characters are not allowed: < > ? \" : \\ / | ' * `"; } else { let parentPath = this.oldName.substring(0, this.oldName.lastIndexOf('/') + 1); let parentPath = this.nodeToRename.substring(0, this.nodeToRename.lastIndexOf('/') + 1); this.$store.dispatch('moveNode', { target: parentPath + this.oldName, direction: parentPath + this.newName Loading Loading
vospace-ui-backend/src/main/java/it/inaf/ia2/vospace/ui/controller/NodesController.java +4 −4 Original line number Diff line number Diff line Loading @@ -142,8 +142,8 @@ public class NodesController extends BaseController { String direction = getRequiredParam(params, "direction"); Transfer transfer = new Transfer(); transfer.setTarget(target); transfer.setDirection(direction); transfer.setTarget("vos://" + authority + target); transfer.setDirection("vos://" + authority + direction); JobSummary job = client.startTransferJob(transfer); Loading
vospace-ui-frontend/src/components/modal/RenameModal.vue +1 −1 Original line number Diff line number Diff line Loading @@ -53,7 +53,7 @@ export default { } else if (/[<>?":\\/`|'*]/.test(this.newName)) { this.newNameError = "Name contains an illegal character. Following characters are not allowed: < > ? \" : \\ / | ' * `"; } else { let parentPath = this.oldName.substring(0, this.oldName.lastIndexOf('/') + 1); let parentPath = this.nodeToRename.substring(0, this.nodeToRename.lastIndexOf('/') + 1); this.$store.dispatch('moveNode', { target: parentPath + this.oldName, direction: parentPath + this.newName Loading