Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primeng
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Dec 12, 2023
2 parents 1fba2ff + 660ddee commit e046a5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 124 deletions.
122 changes: 0 additions & 122 deletions angular.json

This file was deleted.

1 change: 1 addition & 0 deletions src/app/components/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV

if (visibleOptions && ObjectUtils.isNotEmpty(visibleOptions)) {
this.selectedOption = visibleOptions[this.findSelectedOptionIndex()];
this.cd.markForCheck();
}
});
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/listbox/listbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export const LISTBOX_VALUE_ACCESSOR: any = {
</li>
<li *ngIf="!hasFilter() && isEmpty()" class="p-listbox-empty-message" role="option">
<ng-container *ngIf="!emptyTemplate; else empty">
{{ emptyMessageText }}
{{ emptyMessage }}
</ng-container>
<ng-container #empty *ngTemplateOutlet="emptyTemplate"></ng-container>
</li>
Expand All @@ -219,7 +219,7 @@ export const LISTBOX_VALUE_ACCESSOR: any = {
<ng-container *ngTemplateOutlet="footerTemplate; context: { $implicit: modelValue(), options: visibleOptions() }"></ng-container>
</div>
<span *ngIf="isEmpty()" role="status" aria-live="polite" class="p-hidden-accessible">
{{ emptyMessageText }}
{{ emptyMessage }}
</span>
<span role="status" aria-live="polite" class="p-hidden-accessible">
{{ selectedMessageText }}
Expand Down

0 comments on commit e046a5c

Please sign in to comment.