Fix file uploading for unlimited storage [SCI-7105]

This commit is contained in:
Anton 2022-08-18 11:26:42 +02:00
parent bf6375aee6
commit 96d52254c3

View file

@ -45,7 +45,10 @@ export default {
return;
}
if (this.step.attributes.storage_limit && (this.step.attributes.storage_limit.used >= this.step.attributes.storage_limit.total)) {
const storageLimit = this.step.attributes.storage_limit &&
this.step.attributes.storage_limit.total > 0 &&
this.step.attributes.storage_limit.used >= this.step.attributes.storage_limit.total;
if (storageLimit) {
fileObject.error = I18n.t('protocols.steps.attachments.new.no_more_space');
this.attachments.push(fileObject);
return;