mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
fix(kube): improve dashboard load speed [EE-4941] (#8572)
* apply changes from EE * clear query cache when logging out * Text transitions in smoother
This commit is contained in:
parent
5f0af62521
commit
89194405ee
36 changed files with 569 additions and 210 deletions
|
@ -8,6 +8,7 @@ import { UISrefProps, useSref } from '@uirouter/react';
|
|||
import clsx from 'clsx';
|
||||
import { User, ChevronDown } from 'lucide-react';
|
||||
|
||||
import { queryClient } from '@/react-tools/react-query';
|
||||
import { AutomationTestingProps } from '@/types';
|
||||
import { useUser } from '@/react/hooks/useUser';
|
||||
|
||||
|
@ -78,7 +79,10 @@ function MenuLink({
|
|||
return (
|
||||
<ReachMenuLink
|
||||
href={anchorProps.href}
|
||||
onClick={anchorProps.onClick}
|
||||
onClick={(e) => {
|
||||
queryClient.clear();
|
||||
anchorProps.onClick(e);
|
||||
}}
|
||||
className={styles.menuLink}
|
||||
aria-label={label}
|
||||
data-cy={dataCy}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue