projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ac52ed
)
LP#1775466 Grid pageOffset option continued
author
Bill Erickson
<berickxx@gmail.com>
Thu, 12 Jul 2018 15:27:17 +0000
(11:27 -0400)
committer
Bill Erickson
<berickxx@gmail.com>
Wed, 5 Sep 2018 14:05:23 +0000
(10:05 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/share/grid/grid.ts
patch
|
blob
|
history
diff --git
a/Open-ILS/src/eg2/src/app/share/grid/grid.ts
b/Open-ILS/src/eg2/src/app/share/grid/grid.ts
index
8b2f7b2
..
b3e373e
100644
(file)
--- a/
Open-ILS/src/eg2/src/app/share/grid/grid.ts
+++ b/
Open-ILS/src/eg2/src/app/share/grid/grid.ts
@@
-767,7
+767,8
@@
export class GridDataSource {
getPageOfRows(pager: Pager): any[] {
if (this.data) {
return this.data.slice(
- pager.offset, pager.limit + pager.offset);
+ pager.offset, pager.limit + pager.offset
+ ).filter(row => row !== undefined);
}
return [];
}