You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/kubernetes/configs/RestrictedSecretBadge.tsx

13 lines
391 B

import { Badge } from '@@/Badge';
import { TooltipWithChildren } from '@@/Tip/TooltipWithChildren';
export function RestrictedSecretBadge() {
return (
<TooltipWithChildren message="You can only view details of secrets you've created yourself in Portainer">
<div className="min-w-min">
<Badge type="warn">Restricted</Badge>
</div>
</TooltipWithChildren>
);
}