2023-09-20 09:04:26 +03:00
|
|
|
import { Authorized } from '@/react/hooks/useUser';
|
|
|
|
|
2023-03-03 08:45:19 +13:00
|
|
|
import { TextTip } from '@@/Tip/TextTip';
|
|
|
|
|
|
|
|
interface Props {
|
2024-04-04 08:18:13 +13:00
|
|
|
showSystemResources?: boolean;
|
2023-03-03 08:45:19 +13:00
|
|
|
}
|
|
|
|
|
2023-06-12 09:46:48 +12:00
|
|
|
export function SystemResourceDescription({ showSystemResources }: Props) {
|
2024-04-04 08:18:13 +13:00
|
|
|
return showSystemResources === false ? (
|
2023-09-20 09:04:26 +03:00
|
|
|
<Authorized authorizations="K8sAccessSystemNamespaces" adminOnlyCE>
|
|
|
|
<TextTip color="blue" className="!mb-0">
|
|
|
|
System resources are hidden, this can be changed in the table settings
|
|
|
|
</TextTip>
|
|
|
|
</Authorized>
|
|
|
|
) : null;
|
2023-03-03 08:45:19 +13:00
|
|
|
}
|