mirror of
https://github.com/portainer/portainer.git
synced 2025-08-09 15:55:23 +02:00
refactor(edge/stacks): migrate envs table to react [EE-5613] (#9093)
This commit is contained in:
parent
dfc1a7b1d7
commit
11571fd6ea
24 changed files with 652 additions and 281 deletions
|
@ -3,7 +3,10 @@ import { type EnvironmentGroupId } from '@/react/portainer/environments/environm
|
|||
import { type TagId } from '@/portainer/tags/types';
|
||||
import { UserId } from '@/portainer/users/types';
|
||||
import { TeamId } from '@/react/portainer/users/teams/types';
|
||||
import { EdgeStack, EdgeStackStatus } from '@/react/edge/edge-stacks/types';
|
||||
import {
|
||||
EdgeStack,
|
||||
StatusType as EdgeStackStatusType,
|
||||
} from '@/react/edge/edge-stacks/types';
|
||||
|
||||
import type {
|
||||
Environment,
|
||||
|
@ -21,7 +24,7 @@ export type EdgeStackEnvironmentsQueryParams =
|
|||
}
|
||||
| {
|
||||
edgeStackId: EdgeStack['Id'];
|
||||
edgeStackStatus?: keyof EdgeStackStatus['Details'];
|
||||
edgeStackStatus?: EdgeStackStatusType;
|
||||
};
|
||||
|
||||
export interface BaseEnvironmentsQueryParams {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue