diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-07 12:15:28 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-07 12:15:28 +0900 |
| commit | 26b47c18fd20d3628c09601379fcc912e6607201 (patch) | |
| tree | ac92404548401295e68db208c21dd23ae3ac0de2 /src | |
| parent | [API] Improve drive/files/upload_from_url (diff) | |
| download | sharkey-26b47c18fd20d3628c09601379fcc912e6607201.tar.gz sharkey-26b47c18fd20d3628c09601379fcc912e6607201.tar.bz2 sharkey-26b47c18fd20d3628c09601379fcc912e6607201.zip | |
[Client] Fix #2737
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/drive.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/drive.vue b/src/client/app/desktop/views/components/drive.vue index 20861f72bf..725db77679 100644 --- a/src/client/app/desktop/views/components/drive.vue +++ b/src/client/app/desktop/views/components/drive.vue @@ -359,7 +359,7 @@ export default Vue.extend({ }).then(name => { (this as any).api('drive/folders/create', { name: name, - folderId: this.folder ? this.folder.id : undefined + parentId: this.folder ? this.folder.id : undefined }).then(folder => { this.addFolder(folder, true); }); |