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.
eachChildAsync
1 parent 18a77f0 commit 96e8e4bCopy full SHA for 96e8e4b
src/collectionview/index.ios.ts
@@ -205,7 +205,7 @@ export class CollectionView extends CollectionViewBase {
205
206
async eachChildAsync(callback) {
207
// used for css updates (like theme change)
208
- const children = Object.values(this._map);
+ const children = [...this._map.values()];
209
for (let index = 0; index < children.length; index++) {
210
const view = children[index];
211
if (view.parent instanceof CollectionView) {
0 commit comments