From f3776e566c44c7822e24b274e0392fa4bffd8fa8 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Wed, 17 Jan 2024 01:03:55 -0500 Subject: [PATCH] Update workable badges / icons Since the upstream changes have changed paramters (example, we use 'label' instead of 'name'), I've updated bootc for it to work. Depends on: https://github.com/containers/podman-desktop/pull/5557 Signed-off-by: Charlie Drage --- package.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index e508a25b..8d03e256 100644 --- a/package.json +++ b/package.json @@ -53,18 +53,21 @@ "icon": "${bootable-icon}" } ], - "icons/imagesList": [ + "icons/image": [ { "when": "ostree.bootable in imageLabelKeys", "icon": "${bootable-icon}" } ], - "badges/imagesList": [ + "badges/image": [ { "when": "ostree.bootable in imageLabelKeys", "badge": { - "name": "bootc", - "style": "bg-green-600" + "label": "bootc", + "color": { + "dark": "bg-sky-300", + "light": "bg-sky-300" + } } } ]