Skip to content

Commit

Permalink
chore(frontend): fix ember-data:deprecate-array-like
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Sep 4, 2024
1 parent 5db1ba3 commit e11fb3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/app/components/statistic-list/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</tr>
</thead>
<VerticalCollection
@items={{@data.last.value}}
@items={{slice @data.last.value}}
@tagName="tbody"
@estimateHeight={{40}}
@bufferSize={{10}}
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/users/index/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</tr>
</thead>
<VerticalCollection
@items={{data}}
@items={{slice data}}
@tagName="tbody"
@estimateHeight={{40}}
@bufferSize={{10}}
Expand Down

0 comments on commit e11fb3e

Please sign in to comment.