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<
7474 < form className = { stagedCommitStyle } >
7575 < textarea
7676 className = { classes ( textInputStyle , stagedCommitMessageStyle ) }
77- placeholder = { ' Summary (required)' }
77+ placeholder = " Summary (required)"
7878 value = { this . state . summary }
7979 onChange = { this . _onSummaryChange }
8080 onKeyPress = { this . _onSummaryKeyPress }
8181 />
8282 < TextareaAutosize
8383 className = { classes ( textInputStyle , stagedCommitMessageStyle ) }
8484 minRows = { 2 }
85- placeholder = { ' Description' }
85+ placeholder = " Description"
8686 value = { this . state . description }
8787 onChange = { this . _onDescriptionChange }
8888 onKeyPress = { this . _onDescriptionKeyPress }
@@ -99,7 +99,7 @@ export class CommitBox extends React.Component<
9999 }
100100
101101 /**
102- * Returns classes for toggling the commit button.
102+ * Returns classes for toggling (and styling) the commit button.
103103 *
104104 * @returns classes to apply
105105 */
Original file line number Diff line number Diff line change @@ -208,8 +208,8 @@ export class GitPanel extends React.Component<
208208 }
209209 sub = (
210210 < React . Fragment >
211- { msg }
212211 { filelist }
212+ { msg }
213213 </ React . Fragment >
214214 ) ;
215215 }
You can’t perform that action at this time.
0 commit comments