Compare commits

...

3 Commits

Author SHA1 Message Date
Qingxiao Ren
46e8272e3b make url property of FileUploaderOptions optional 2022-12-13 14:19:05 +08:00
SvetlanaMuravlova
6f5ac1cb94 fix(ci): fixed release yml file 2022-12-12 18:04:09 +02:00
SvetlanaMuravlova
fc21870c82 fix(chore): fixed build in yml file 2022-12-08 17:11:12 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -51,8 +51,8 @@ jobs:
dist dist
key: dist-${{ github.run_id }} key: dist-${{ github.run_id }}
- run: | - run: |
npx nx run ng2-file-upload:build npx nx run ng2-file-upload:build --configuration production
npx nx run ng2-file-upload-demo:build npx nx run ng2-file-upload-demo:build --configuration production
# update release notes in github # update release notes in github
update_release_draft: update_release_draft:

View File

@@ -31,7 +31,7 @@ export interface FileUploaderOptions {
maxFileSize?: number; maxFileSize?: number;
queueLimit?: number; queueLimit?: number;
removeAfterUpload?: boolean; removeAfterUpload?: boolean;
url: string; url?: string;
disableMultipart?: boolean; disableMultipart?: boolean;
itemAlias?: string; itemAlias?: string;
authTokenHeader?: string; authTokenHeader?: string;