Skip to content

Commit 016c711

Browse files
committed
fix: file path error
1 parent d042973 commit 016c711

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

antdv-demo

components/form/Form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import isEqual from 'lodash-es/isEqual';
1313
import scrollIntoView from 'scroll-into-view-if-needed';
1414
import initDefaultProps from '../_util/props-util/initDefaultProps';
1515
import { tuple, VueNode } from '../_util/type';
16-
import { ColProps } from '../grid/col';
16+
import { ColProps } from '../grid/Col';
1717
import { InternalNamePath, NamePath, ValidateOptions } from './interface';
1818

1919
export type ValidationRule = {

components/form/FormItem.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PropTypes from '../_util/vue-types';
44
import classNames from '../_util/classNames';
55
import { getTransitionProps, Transition } from '../_util/transition';
66
import Row from '../grid/Row';
7-
import Col from '../grid/Col';
7+
import Col, { ColProps } from '../grid/Col';
88
import hasProp, {
99
findDOMNode,
1010
getComponent,
@@ -25,7 +25,6 @@ import { getNamePath } from './utils/valueUtil';
2525
import { toArray } from './utils/typeUtil';
2626
import { warning } from '../vc-util/warning';
2727
import find from 'lodash-es/find';
28-
import { ColProps } from '../grid/col';
2928
import { tuple, VueNode } from '../_util/type';
3029
import { ValidateOptions } from './interface';
3130

0 commit comments

Comments
 (0)