We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677ecb0 commit a52a655Copy full SHA for a52a655
packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts
@@ -55,9 +55,11 @@ export class EntryListPopComponent extends PopComponent implements OnChanges {
55
}
56
// this.searchbar.focusEvent.emit(true);
57
58
-
59
getHeader(entryList) {
60
- const label = this.config.singularLabel || entryList.model;
+ const label = this.config.singularLabel || `${entryList.model}`;
+ if (!this.selection.isEmpty()) {
61
+ return `${label}: ${this.selection.items.length} selected`;
62
+ }
63
return `${label}`;
64
65
0 commit comments