Commit 279d4506 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Fixed aesthetic issue on loading animation during upload

parent baf16615
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ export default {
        parentPath: path,
        files: files
      }
    });
    }, false);
  },
  uploadFile(url, file) {
    let formData = new FormData();
+2 −1
Original line number Diff line number Diff line
@@ -183,7 +183,8 @@ export default new Vuex.Store({
          dispatch('setPath', state.path);
        });
    },
    uploadFiles({ state, dispatch }, files) {
    uploadFiles({ state, commit, dispatch }, files) {
      commit('setLoading', true);
      let names = [];
      for (let file of files) {
        names.push(file.name);