- cancel/resume subscription fix

- upload into root folder fix
- custom color theme part 3
This commit is contained in:
Peter Papp
2021-03-25 10:46:23 +01:00
parent 88c134918e
commit 44fe96497c
41 changed files with 702 additions and 391 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ const Helpers = {
// Push items to file queue
[...files].map(item => {
this.$store.commit('ADD_FILES_TO_QUEUE', {
folder_id: store.getters.currentFolder.id,
folder_id: store.getters.currentFolder.id ? store.getters.currentFolder.id : '',
file: item,
})
});