Skip to content

Commit

Permalink
refactor: wrap the Container Registries tab (eclipse-che#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
top1436 authored Oct 25, 2021
1 parent 45f65e6 commit bdd9c06
Show file tree
Hide file tree
Showing 25 changed files with 831 additions and 942 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import React from 'react';
import { Button, ButtonVariant, ModalVariant, Modal, TextContent, Text, Checkbox } from '@patternfly/react-core';
import { RegistryRow } from '../../../store/UserPreferences/types';
import { RegistryRow } from '../../../../store/UserPreferences/types';

type Props = {
registry?: RegistryRow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
ValidatedOptions,
} from '@patternfly/react-core';
import React from 'react';
import { RegistryRow } from '../../../store/UserPreferences/types';
import { RegistryRow } from '../../../../store/UserPreferences/types';
import { RegistryPasswordFormGroup } from '../RegistryPassword';
import { RegistryUrlFormGroup } from '../RegistryUrl';
import { RegistryUsernameFormGroup } from '../RegistryUsername';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import userEvent from '@testing-library/user-event';
import React from 'react';
import { render, screen } from '@testing-library/react';
import renderer from 'react-test-renderer';
import { RegistryRow } from '../../../../store/UserPreferences/types';
import { RegistryRow } from '../../../../../store/UserPreferences/types';
import DeleteRegistriesModal from '../DeleteRegistriesModal';
import { FakeRegistryBuilder } from '../../__tests__/__mocks__/registryRowBuilder';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import userEvent from '@testing-library/user-event';
import React from 'react';
import { render, screen } from '@testing-library/react';
import renderer from 'react-test-renderer';
import { RegistryRow } from '../../../../store/UserPreferences/types';
import { RegistryRow } from '../../../../../store/UserPreferences/types';
import EditRegistryModal from '../EditRegistryModal';
import { FakeRegistryBuilder } from '../../__tests__/__mocks__/registryRowBuilder';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Red Hat, Inc. - initial API and implementation
*/

import { RegistryRow } from '../../../../store/UserPreferences/types';
import { RegistryRow } from '../../../../../store/UserPreferences/types';

export class FakeRegistryBuilder {

Expand Down
Loading

0 comments on commit bdd9c06

Please sign in to comment.