@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/lib/dev/editor.js +3 -3
- package/lib/editor.js +1 -1
- package/package.json +1 -1
- package/src/core/services/uploads.js +2 -2
package/package.json
CHANGED
|
@@ -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 => {
|