fix(core): drag and drop files into doc (#6630)

close #6625
This commit is contained in:
JimmFly
2024-04-19 06:25:17 +00:00
parent 8c0732ddf1
commit 9d412d22cb

View File

@@ -22,6 +22,7 @@ class CustomAttachmentService extends AttachmentService {
// blocksuite default max file size is 10MB, we override it to 2GB
// but the real place to limit blob size is CloudQuotaModal / LocalQuotaModal
this.maxFileSize = bytes.parse('2GB');
super.mounted();
}
}