File tree 9 files changed +10
-0
lines changed
9 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class ChapterFormContainer extends Component {
34
34
ChapterFormContainer . propTypes = {
35
35
chapter : PropTypes . object ,
36
36
isBusy : PropTypes . bool . isRequired ,
37
+ loading : PropTypes . bool . isRequired ,
37
38
fetchData : PropTypes . func . isRequired ,
38
39
showLoad : PropTypes . func . isRequired ,
39
40
hideLoad : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ class ChapterListContainer extends Component {
55
55
ChapterListContainer . propTypes = {
56
56
chapters : PropTypes . array . isRequired ,
57
57
isBusy : PropTypes . bool . isRequired ,
58
+ loading : PropTypes . bool . isRequired ,
58
59
currentUser : PropTypes . object . isRequired ,
59
60
fetchData : PropTypes . func . isRequired ,
60
61
navigate : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ ProjectDetailContainer.propTypes = {
50
50
projectEvaluations : PropTypes . array ,
51
51
projectUserSummaries : PropTypes . array ,
52
52
isBusy : PropTypes . bool . isRequired ,
53
+ loading : PropTypes . bool . isRequired ,
53
54
currentUser : PropTypes . object ,
54
55
fetchData : PropTypes . func . isRequired ,
55
56
navigate : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class ProjectFormContainer extends Component {
34
34
ProjectFormContainer . propTypes = {
35
35
project : PropTypes . object ,
36
36
isBusy : PropTypes . bool . isRequired ,
37
+ loading : PropTypes . bool . isRequired ,
37
38
fetchData : PropTypes . func . isRequired ,
38
39
showLoad : PropTypes . func . isRequired ,
39
40
hideLoad : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ class ProjectListContainer extends Component {
51
51
ProjectListContainer . propTypes = {
52
52
projects : PropTypes . array . isRequired ,
53
53
isBusy : PropTypes . bool . isRequired ,
54
+ loading : PropTypes . bool . isRequired ,
54
55
currentUser : PropTypes . object . isRequired ,
55
56
fetchData : PropTypes . func . isRequired ,
56
57
navigate : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ class RetroSurveyContainer extends Component {
261
261
262
262
RetroSurveyContainer . propTypes = {
263
263
isBusy : PropTypes . bool . isRequired ,
264
+ loading : PropTypes . bool . isRequired ,
264
265
currentUser : PropTypes . object ,
265
266
error : PropTypes . object ,
266
267
groupIndex : PropTypes . number ,
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ class UserDetailContainer extends Component {
45
45
UserDetailContainer . propTypes = {
46
46
user : PropTypes . object ,
47
47
userProjectSummaries : PropTypes . array ,
48
+ isBusy : PropTypes . bool . isRequired ,
49
+ loading : PropTypes . bool . isRequired ,
48
50
fetchData : PropTypes . func . isRequired ,
49
51
navigate : PropTypes . func . isRequired ,
50
52
showLoad : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ class UserListContainer extends Component {
44
44
UserListContainer . propTypes = {
45
45
users : PropTypes . array . isRequired ,
46
46
isBusy : PropTypes . bool . isRequired ,
47
+ loading : PropTypes . bool . isRequired ,
47
48
currentUser : PropTypes . object . isRequired ,
48
49
fetchData : PropTypes . func . isRequired ,
49
50
navigate : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change 219
219
" single" ,
220
220
" avoid-escape"
221
221
],
222
+ "react/no-unused-prop-types" : 0 ,
222
223
"react/forbid-component-props" : 0 ,
223
224
"react/jsx-indent" : [
224
225
2 ,
You can’t perform that action at this time.
0 commit comments