Browse Source

docs: add how to change ListService defaults

pull/6714/head
Arman Ozak 5 years ago
parent
commit
af89884492
  1. 5
      docs/en/UI/Angular/List-Service.md

5
docs/en/UI/Angular/List-Service.md

@ -35,7 +35,10 @@ class BookComponent {
constructor(
public readonly list: ListService,
private bookService: BookService,
) {}
) {
// change ListService defaults here
this.list.maxResultCount = 20;
}
ngOnInit() {
// A function that gets query and returns an observable

Loading…
Cancel
Save