Skip to content

Commit

Permalink
fix(taglist): add missing props and state for architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Jun 8, 2023
1 parent b88dc45 commit ae9591c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/tag-list/architectures.riot
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
},
onLoad(props, state) {
if (props.image.manifests) {
return this.onList(props.image.manifests);
return this.onList(props.image.manifests, props, state);
} else if (props.image.blobs) {
return this.onBlobs(props.image.blobs);
return this.onBlobs(props.image.blobs, props, state);
}
props.image.on('blobs', (blobs) => this.onBlobs(blobs, props, state));
props.image.on('list', (list) => this.onList(list, props, state));
Expand Down

0 comments on commit ae9591c

Please sign in to comment.