Skip to content

Commit

Permalink
Fix upload folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Jul 11, 2022
1 parent afcf1d7 commit 8d429a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class RichEditorComponent extends StatefulControlComponent<{}, string> im
images_upload_handler: (blob: any, success: (url: string) => void, failure: (message: string) => void) => {
const file = new File([blob.blob()], blob.filename(), { lastModified: new Date().getTime() });

self.assetUploader.uploadFile(file)
self.assetUploader.uploadFile(file, undefined, this.folderId)
.subscribe({
next: asset => {
if (Types.is(asset, AssetDto)) {
Expand Down

0 comments on commit 8d429a0

Please sign in to comment.