mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
feat(kuberenetes): add annotations to kube objects EE-4089 (#8499)
* add annotations BE teaser * fix settings icon click on home screen for kube env * add debouce to namespace validation * ingress button tooltip fixed * fix tooltip text
This commit is contained in:
parent
5f66020e42
commit
defce0cf6d
16 changed files with 579 additions and 483 deletions
|
@ -12,6 +12,7 @@ interface Props {
|
|||
buttonText: string;
|
||||
className?: string;
|
||||
icon?: ReactNode;
|
||||
buttonClassName?: string;
|
||||
}
|
||||
|
||||
export function BETeaserButton({
|
||||
|
@ -21,6 +22,7 @@ export function BETeaserButton({
|
|||
buttonText,
|
||||
className,
|
||||
icon,
|
||||
buttonClassName,
|
||||
}: Props) {
|
||||
return (
|
||||
<TooltipWithChildren
|
||||
|
@ -31,6 +33,7 @@ export function BETeaserButton({
|
|||
>
|
||||
<span>
|
||||
<Button
|
||||
className={buttonClassName}
|
||||
icon={icon}
|
||||
type="button"
|
||||
color="warninglight"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue