Skip to content

Commit

Permalink
fix: fix storageFrom.jsx rename failure (#20)
Browse files Browse the repository at this point in the history
Signed-off-by: moweiwei <mo.weiwei@99cloud.net>
  • Loading branch information
moweiwei authored Jul 26, 2022
1 parent 39c962f commit 020295f
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/FormRender/widgets/KSPlugins/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Switch } from 'antd';
import FR from 'components/FormRender';
import { useForm } from 'form-render';
import { get, isEmpty } from 'lodash';
import { Context } from 'pages/cluster/components/PluginForm/Context';
import { Context } from '@/pages/cluster/components/plugin/Context';

import styles from './index.less';

Expand Down
4 changes: 2 additions & 2 deletions src/pages/cluster/containers/Cluster/actions/AddPlugin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { cloneDeep, omit, isArray, get, set, isMatch } from 'lodash';
import { Forms } from 'components/Form';
import classnames from 'classnames';
import styles from './index.less';
import RenderForm from '../../../components/PluginForm/RenderForm';
import { Context } from 'pages/cluster/components/PluginForm/Context';
import RenderForm from '../../../components/plugin/RenderForm';
import { Context } from '@/pages/cluster/components/plugin/Context';
import Tips from '@/pages/cluster/components/Tips';
import Notify from 'components/Notify';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import React, { useEffect, useReducer, useRef } from 'react';
import Tabs from 'components/Tabs';
import styles from './index.less';
import RenderForm from '../../../components/PluginForm/RenderForm';
import RenderForm from '../../../components/plugin/RenderForm';
import { cloneDeep, uniq, omit, set, assign, isArray, isMatch } from 'lodash';
import { useParams, useHistory } from 'react-router-dom';
import { filterComponents } from 'utils/schemaForm';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import React from 'react';
import { observer } from 'mobx-react';
import BaseForm from 'components/Form';
import PluginForm from 'pages/cluster/components/PluginForm';
import PluginForm from '@/pages/cluster/components/plugin/PluginForm';
import { rootStore } from 'stores';
import { toJS } from 'mobx';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { observer } from 'mobx-react';
import Base from 'components/Form';
import { rootStore } from 'stores';
import { filter } from 'lodash';
import StorageForm from 'pages/cluster/components/PluginForm/StorageFrom';
import StorageForm from 'pages/cluster/components/plugin/StorageForm';

@observer
export default class Storage extends Base {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import React from 'react';
import { observer } from 'mobx-react';
import BaseForm from 'components/Form';
import PluginForm from 'pages/cluster/components/PluginForm';
import PluginForm from '@/pages/cluster/components/plugin/PluginForm';
import { rootStore } from 'stores';
import { toJS } from 'mobx';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import Base from 'components/Form';
import { rootStore } from 'stores';
import { toJS } from 'mobx';
import { filter } from 'lodash';
import StorageForm from 'pages/cluster/components/PluginForm/StorageFrom';
import StorageForm from 'pages/cluster/components/plugin/StorageForm';

@observer
export default class Storage extends Base {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import { useParams, useHistory } from 'react-router';
import { useRootStore } from 'stores';
import { set, cloneDeep } from 'lodash';
import classnames from 'classnames';
import RenderForm from 'pages/cluster/components/PluginForm/RenderForm';
import { Context } from 'pages/cluster/components/PluginForm/Context';
import RenderForm from '@/pages/cluster/components/plugin/RenderForm';
import { Context } from '@/pages/cluster/components/plugin/Context';
import Tips from '@/pages/cluster/components/Tips';

import Notify from 'components/Notify';
Expand Down

0 comments on commit 020295f

Please sign in to comment.