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 { -
  • {{ emptyFilterMessageLabel }}
  • -
  • {{ emptyMessageLabel }} 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(); } diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 55b657a5ec9..b183c98681a 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -56,7 +56,7 @@ export const MULTISELECT_VALUE_ACCESSOR: any = { template: `
  • -
  • +
  • {{ emptyFilterMessageLabel }}
  • -
  • +
  • {{ emptyMessageLabel }} @@ -370,7 +376,6 @@ export class MultiSelectItem {