File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ export function fetchUngitConfig() {
12
12
if ( ! json . config . bugtracking ) {
13
13
dispatch ( fetchUserConfig ( ) ) ;
14
14
}
15
- dispatch ( receiveUgitConfig ( json ) ) ;
15
+ dispatch ( receiveUngitConfig ( json ) ) ;
16
16
} )
17
17
. catch ( e => {
18
18
dispatch ( apiError ( e . message ) ) ;
19
19
} ) ;
20
20
} ;
21
21
} ;
22
22
23
- function receiveUgitConfig ( ungitConfig ) {
23
+ function receiveUngitConfig ( ungitConfig ) {
24
24
return {
25
25
type : types . RECEIVE_UNGIT_CONFIG ,
26
26
payload : ungitConfig
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React, { Component } from 'react';
2
2
import { bindActionCreators } from 'redux' ;
3
3
import { connect } from 'react-redux'
4
4
5
- import AlerArea from 'components/alert-area' ;
5
+ import AlertArea from 'components/alert-area' ;
6
6
import * as bootstrapActionCreators from 'actions/bootstrap' ;
7
7
import 'styles/styles.scss' ;
8
8
@@ -28,7 +28,7 @@ class Path extends Component {
28
28
< div className = "app-wrapper" >
29
29
{
30
30
pending === 0 && errMessage . length === 0 ? (
31
- < AlerArea config = { this . props . config }
31
+ < AlertArea config = { this . props . config }
32
32
gitVersionErrorVisible = { app . gitVersionErrorVisible }
33
33
showNewVersionAvailable = { app . showNewVersionAvailable }
34
34
showBugtrackingNagscreen = { app . showBugtrackingNagscreen }
You can’t perform that action at this time.
0 commit comments