Prometheus: Add beta tag to mode switch for Builder mode (#47376)

* Add beta tag to mode switch

* Fix selectors
This commit is contained in:
Andrej Ocenas
2022-04-06 11:50:12 +02:00
committed by GitHub
parent caa82a124d
commit 0d3879d1c1
4 changed files with 24 additions and 9 deletions

View File

@@ -87,7 +87,7 @@ export function RadioButtonGroup<T>({
>
{o.icon && <Icon name={o.icon as IconName} className={styles.icon} />}
{o.imgUrl && <img src={o.imgUrl} alt={o.label} className={styles.img} />}
{o.label}
{o.label} {o.component ? <o.component /> : null}
</RadioButton>
);
})}