mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 20:35:25 +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
|
@ -17,8 +17,8 @@ import { dockerHandlers } from './setup-handlers/docker';
|
|||
import { userHandlers } from './setup-handlers/users';
|
||||
|
||||
const tags: Tag[] = [
|
||||
{ ID: 1, Name: 'tag1' },
|
||||
{ ID: 2, Name: 'tag2' },
|
||||
{ ID: 1, Name: 'tag1', Endpoints: {} },
|
||||
{ ID: 2, Name: 'tag2', Endpoints: {} },
|
||||
];
|
||||
|
||||
const licenseInfo: LicenseInfo = {
|
||||
|
@ -68,7 +68,7 @@ export const handlers = [
|
|||
rest.get('/api/tags', (req, res, ctx) => res(ctx.json(tags))),
|
||||
rest.post<{ name: string }>('/api/tags', (req, res, ctx) => {
|
||||
const tagName = req.body.name;
|
||||
const tag = { ID: tags.length + 1, Name: tagName };
|
||||
const tag = { ID: tags.length + 1, Name: tagName, Endpoints: {} };
|
||||
tags.push(tag);
|
||||
return res(ctx.json(tag));
|
||||
}),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue