Skip to content

Commit 4f05d09

Browse files
committed
Switch file list and commit box order
1 parent f3cedc5 commit 4f05d09

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/CommitBox.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
*/

src/components/GitPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)