quasar-ui-danx 0.3.36 → 0.3.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.3.36",
3
+ "version": "0.3.37",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -268,7 +268,7 @@ export class FileUpload {
268
268
  * Start uploading all files
269
269
  */
270
270
  async upload() {
271
- console.log && console.log("FileUploader@upload()", this.fileUploads, this.options);
271
+ console.log && console.log("FileUploader@upload():", this.fileUploads, this.options);
272
272
  for (const fileUpload of this.fileUploads) {
273
273
  const mimeType = fileUpload.file.mimeType || fileUpload.file.type;
274
274
  const presignedUrl = this.options.presignedUploadUrl(this.options.directory, fileUpload.file.name, mimeType);
@@ -305,6 +305,8 @@ export class FileUpload {
305
305
  // Set all the callbacks on the XHR requests
306
306
  this.setXhrCallbacks();
307
307
 
308
+ console.log && console.log("FileUploader@upload():", "sending uploads");
309
+
308
310
  // Send all the XHR file uploads
309
311
  for (const fileUpload of this.fileUploads) {
310
312
  fileUpload.xhr.send(fileUpload.body);