diff --git a/src/components/FileTable.vue b/src/components/FileTable.vue index 0cd26ea..b3a173c 100644 --- a/src/components/FileTable.vue +++ b/src/components/FileTable.vue @@ -612,7 +612,6 @@ export default { const oldName = this.root_path + this.current_dir + '/' + names.initialFileName; const newName = this.root_path + this.current_dir + '/' + names.newFileName; let alreadyExists = await this.elemtAlreadyExists(newName); - console.log(names) if (!alreadyExists) { await client.moveFile(oldName, newName); }