mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
feature(helm): move helm charts inside advance deployments (create from manifest) [EE-5999] (#10395)
This commit is contained in:
parent
9885694df6
commit
b468070945
49 changed files with 877 additions and 388 deletions
|
@ -92,18 +92,18 @@ export function BoxSelectorItem<T extends Value>({
|
|||
}
|
||||
|
||||
if (option.iconType === 'badge') {
|
||||
return <BadgeIcon icon={option.icon} />;
|
||||
return <BadgeIcon icon={option.icon} iconClass={option.iconClass} />;
|
||||
}
|
||||
|
||||
if (option.iconType === 'raw') {
|
||||
return (
|
||||
<Icon
|
||||
icon={option.icon}
|
||||
className={clsx(styles.icon, '!flex items-center')}
|
||||
className={clsx(styles.icon, option.iconClass, '!flex items-center')}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return <LogoIcon icon={option.icon} />;
|
||||
return <LogoIcon icon={option.icon} iconClass={option.iconClass} />;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue