mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-25 22:49:54 +03:00
fix(taglist): add missing props
and state
for architectures
This commit is contained in:
parent
b88dc4567d
commit
ae9591c79a
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue