Skip to content

Commit

Permalink
fix: Function name modification (#1192)
Browse files Browse the repository at this point in the history
Co-authored-by: xuzl <guox@MacBook-Pro-For-Xuzl.local>
  • Loading branch information
xuzhonglin12138 and xuzl committed Mar 21, 2023
1 parent eed7e7d commit 4bd90ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/GateWay/control.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Control extends Component {
fetchPipePipeline = (eid) => {
const { dispatch, currUser } = this.props;
dispatch({
type: 'teamControl/fetchPipePipeline',
type: 'teamControl/fetchPluginUrl',
payload: {
enterprise_id: currUser.enterprise_id,
region_name: globalUtil.getCurrRegionName()
Expand Down
2 changes: 1 addition & 1 deletion src/pages/GateWay/license.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Control extends Component {
fetchPipePipeline = (eid) => {
const { dispatch, currUser } = this.props;
dispatch({
type: 'teamControl/fetchPipePipeline',
type: 'teamControl/fetchPluginUrl',
payload: {
enterprise_id: currUser.enterprise_id,
region_name: globalUtil.getCurrRegionName()
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Group/Gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default class AppGatewayList extends PureComponent {
fetchPipePipeline = (eid) => {
const { dispatch, currUser } = this.props;
dispatch({
type: 'teamControl/fetchPipePipeline',
type: 'teamControl/fetchPluginUrl',
payload: {
enterprise_id: currUser.enterprise_id,
region_name: globalUtil.getCurrRegionName()
Expand Down

0 comments on commit 4bd90ed

Please sign in to comment.