Skip to content

Commit ae9591c

Browse files
committed
fix(taglist): add missing props and state for architectures
1 parent b88dc45 commit ae9591c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/tag-list/architectures.riot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
},
1414
onLoad(props, state) {
1515
if (props.image.manifests) {
16-
return this.onList(props.image.manifests);
16+
return this.onList(props.image.manifests, props, state);
1717
} else if (props.image.blobs) {
18-
return this.onBlobs(props.image.blobs);
18+
return this.onBlobs(props.image.blobs, props, state);
1919
}
2020
props.image.on('blobs', (blobs) => this.onBlobs(blobs, props, state));
2121
props.image.on('list', (list) => this.onList(list, props, state));

0 commit comments

Comments
 (0)