1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

refactor(environments): move environments ts code to react [EE-3443] (#7747)

This commit is contained in:
Chaim Lev-Ari 2022-10-23 09:53:25 +03:00 committed by GitHub
parent 1b12cc9f31
commit e48ceb15e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
154 changed files with 195 additions and 179 deletions

View file

@ -1,6 +1,6 @@
import _ from 'lodash';
import { Environment } from '@/portainer/environments/types';
import { Environment } from '@/react/portainer/environments/types';
import type { DockerContainer } from '@/react/docker/containers/types';
import { useShowGPUsColumn } from '@/react/docker/containers/utils';

View file

@ -27,7 +27,7 @@ import {
startContainer,
stopContainer,
} from '@/react/docker/containers/containers.service';
import type { EnvironmentId } from '@/portainer/environments/types';
import type { EnvironmentId } from '@/react/portainer/environments/types';
import { Link } from '@@/Link';
import { ButtonGroup, Button } from '@@/buttons';

View file

@ -1,4 +1,4 @@
import { Environment } from '@/portainer/environments/types';
import { Environment } from '@/react/portainer/environments/types';
import { createRowContext } from '@@/datatables/RowContext';