Skip to content

Commit

Permalink
Move form-utils from @console/dev-console to @console/shared
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Tomasek committed Nov 27, 2019
1 parent a991095 commit 1c82e90
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormikProps, FormikValues } from 'formik';
import { useAccessReview } from '@console/internal/components/utils';
import { getActiveNamespace } from '@console/internal/actions/ui';
import { MultiColumnField, InputField } from '@console/shared/src/components/formik-fields';
import { FormFooter } from '../../form-utils';
import { FormFooter } from '@console/shared/src/components/form-utils';

const PipelineParameters: React.FC<FormikProps<FormikValues>> = ({
handleSubmit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
InputField,
DropdownField,
} from '@console/shared/src/components/formik-fields';
import { FormFooter } from '../../form-utils';
import { FormFooter } from '@console/shared/src/components/form-utils';

enum resourceTypes {
'' = 'Select resource type',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
InputField,
DropdownField,
} from '@console/shared/src/components/formik-fields';
import { FormFooter } from '../form-utils';
import { FormFooter } from '@console/shared/src/components/form-utils';

enum accessRoles {
'' = 'Select a role',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
TextAreaField,
SwitchField,
} from '@console/shared/src/components/formik-fields';
import { FormFooter } from '@console/dev-console/src/components/form-utils';
import { FormFooter } from '@console/shared/src/components/form-utils';
import { AddBareMetalHostFormValues } from './types';

type AddBareMetalHostFormProps = FormikProps<AddBareMetalHostFormValues>;
Expand Down

0 comments on commit 1c82e90

Please sign in to comment.