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 @@ -74,15 +74,15 @@ export class CommitBox extends React.Component<
74
74
< form className = { stagedCommitStyle } >
75
75
< textarea
76
76
className = { classes ( textInputStyle , stagedCommitMessageStyle ) }
77
- placeholder = { ' Summary (required)' }
77
+ placeholder = " Summary (required)"
78
78
value = { this . state . summary }
79
79
onChange = { this . _onSummaryChange }
80
80
onKeyPress = { this . _onSummaryKeyPress }
81
81
/>
82
82
< TextareaAutosize
83
83
className = { classes ( textInputStyle , stagedCommitMessageStyle ) }
84
84
minRows = { 2 }
85
- placeholder = { ' Description' }
85
+ placeholder = " Description"
86
86
value = { this . state . description }
87
87
onChange = { this . _onDescriptionChange }
88
88
onKeyPress = { this . _onDescriptionKeyPress }
@@ -99,7 +99,7 @@ export class CommitBox extends React.Component<
99
99
}
100
100
101
101
/**
102
- * Returns classes for toggling the commit button.
102
+ * Returns classes for toggling (and styling) the commit button.
103
103
*
104
104
* @returns classes to apply
105
105
*/
Original file line number Diff line number Diff line change @@ -208,8 +208,8 @@ export class GitPanel extends React.Component<
208
208
}
209
209
sub = (
210
210
< React . Fragment >
211
- { msg }
212
211
{ filelist }
212
+ { msg }
213
213
</ React . Fragment >
214
214
) ;
215
215
}
You can’t perform that action at this time.
0 commit comments