@widgetic/editor 3.10.44 → 3.10.45

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": "@widgetic/editor",
3
- "version": "3.10.44",
3
+ "version": "3.10.45",
4
4
  "scripts": {
5
5
  "start": "webpack --config webpack.config.js --watch --progress",
6
6
  "build": "webpack --config webpack.config.js",
@@ -95,7 +95,7 @@ export default class UploadService extends EventsMixin(Service) {
95
95
  const id = response.files.data[0].id;
96
96
 
97
97
  // read quota from response
98
- this.quota = response.quota.max;
98
+ // this.quota = response.quota.max;
99
99
  this.used = response.quota.used;
100
100
 
101
101
  this._update(uploadFile, f => {
@@ -166,7 +166,7 @@ export default class UploadService extends EventsMixin(Service) {
166
166
  this.refreshed[type] = true;
167
167
 
168
168
  // read quota from response
169
- this.quota = response.quota.max;
169
+ // this.quota = response.quota.max;
170
170
  this.used = response.quota.used;
171
171
 
172
172
  return response.files.data.map(file => {