mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
* port services from ee * fix external link * post review improvements * remove applications-ports-datatable * minor post review updates * add services help url * post review update * more post review updates * post review updates * rename index to component * fix external ip display and sorting * fix external apps tag * fix ingress screen time format * use uid for row id. Prevent blank link * fix some missing bits ported from EE * match ee * fix display of show system resources * remove icon next to service type
17 lines
424 B
TypeScript
17 lines
424 B
TypeScript
import { TextTip } from '@@/Tip/TextTip';
|
|
|
|
interface Props {
|
|
showSystemResources: boolean;
|
|
}
|
|
|
|
export function ServicesDatatableDescription({ showSystemResources }: Props) {
|
|
return (
|
|
<div className="w-full">
|
|
{!showSystemResources && (
|
|
<TextTip color="blue" className="!mb-0">
|
|
System resources are hidden, this can be changed in the table settings
|
|
</TextTip>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|