From ae9591c79acc7ca8be9ba2040e0d301c80202a22 Mon Sep 17 00:00:00 2001 From: Joxit Date: Thu, 8 Jun 2023 08:28:23 +0200 Subject: [PATCH] fix(taglist): add missing `props` and `state` for architectures --- src/components/tag-list/architectures.riot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/tag-list/architectures.riot b/src/components/tag-list/architectures.riot index 2f40841..a0d0792 100644 --- a/src/components/tag-list/architectures.riot +++ b/src/components/tag-list/architectures.riot @@ -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));