Skip to content

Commit

Permalink
$mol_infinite: fixed keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jin committed Sep 18, 2023
1 parent b7509cf commit b940bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infinite/infinite.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ namespace $.$$ {
const ids = this.row_ids()

return [
this.Before( ids.at(0) ),
this.Before( ids.at(0) ?? null ),
... ids.map( id => this.Row( id ) ),
this.After( ids.at(-1) ),
this.After( ids.at(-1) ?? null ),
]

}
Expand Down

0 comments on commit b940bbd

Please sign in to comment.