1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 14:29:40 +02:00

feat(k8s): CRD in applications list and details 2.31.1 - [R8S-357] (#806)

Co-authored-by: stevensbkang <skan070@gmail.com>
This commit is contained in:
James Player 2025-06-18 09:06:58 +12:00 committed by GitHub
parent 078dca33b8
commit 4b5b682d0c
2 changed files with 22 additions and 14 deletions

View file

@ -1,7 +1,4 @@
import clsx from 'clsx';
import { Settings } from 'lucide-react';
import { Icon } from '@@/Icon';
import styles from './ViewLoading.module.css';
@ -18,12 +15,7 @@ export function ViewLoading({ message }: Props) {
<div className="sk-fold-cube" />
<div className="sk-fold-cube" />
</div>
{message && (
<span className={styles.message}>
{message}
<Icon icon={Settings} className="!ml-1 animate-spin-slow" />
</span>
)}
{message && <span className={styles.message}>{message}</span>}
</div>
);
}