From 6591c44074a8ba545c4b15986fef492618944958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Thu, 28 Mar 2024 11:13:17 +0300 Subject: [PATCH 1/2] Fixed #15150 - p-fileUpload | auto file upload not working in advanced mode --- src/app/components/fileupload/fileupload.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/fileupload/fileupload.ts b/src/app/components/fileupload/fileupload.ts index edd58096d84..5de223f8be4 100755 --- a/src/app/components/fileupload/fileupload.ts +++ b/src/app/components/fileupload/fileupload.ts @@ -582,7 +582,7 @@ export class FileUpload implements AfterViewInit, AfterContentInit, OnInit, OnDe // this will check the fileLimit with the uploaded files this.checkFileLimit(files); - if (this.hasFiles() && this.auto && !(this.mode === 'advanced') && !this.isFileLimitExceeded()) { + if (this.hasFiles() && this.auto && (!(this.mode === 'advanced') || !this.isFileLimitExceeded())) { this.upload(); } From c4af036cd0a4ae942de6f7e43baac64d312a6a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 29 Mar 2024 10:39:06 +0300 Subject: [PATCH 2/2] Fixed #15197 --- src/app/components/dropdown/dropdown.ts | 5 +++-- src/app/components/multiselect/multiselect.ts | 17 +++++++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index 0ea0f2859a8..04da52d86ae 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -222,6 +222,7 @@ export class DropdownItem { -
- -