2023-09-20 06:04:26 +00:00
|
|
|
import { Authorized } from '@/react/hooks/useUser';
|
|
|
|
|
2023-03-02 19:45:19 +00:00
|
|
|
import { TextTip } from '@@/Tip/TextTip';
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
showSystemResources: boolean;
|
|
|
|
}
|
|
|
|
|
2023-06-11 21:46:48 +00:00
|
|
|
export function SystemResourceDescription({ showSystemResources }: Props) {
|
2023-09-20 06:04:26 +00:00
|
|
|
return !showSystemResources ? (
|
|
|
|
<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-02 19:45:19 +00:00
|
|
|
}
|