We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a1629f commit ad3f227Copy full SHA for ad3f227
src/components/CommitBox.tsx
@@ -76,6 +76,7 @@ export class CommitBox extends React.Component<
76
className={commitSummaryClass}
77
type="text"
78
placeholder="Summary (required)"
79
+ title="Enter a commit message summary"
80
value={this.state.summary}
81
onChange={this._onSummaryChange}
82
onKeyPress={this._onSummaryKeyPress}
@@ -84,6 +85,7 @@ export class CommitBox extends React.Component<
84
85
className={commitDescriptionClass}
86
minRows={5}
87
placeholder="Description"
88
+ title="Enter a commit message description"
89
value={this.state.description}
90
onChange={this._onDescriptionChange}
91
/>
0 commit comments