Skip to content

Commit 42c9a1e

Browse files
committed
fix: placeholder text on commit input has no length limit
1 parent 29b5470 commit 42c9a1e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
- Production configuration page no longer closes Sync/WebUI when operations there change the production (#542)
3333
- Remove leading/trailing spaces from input to Configure() (#356)
3434
- Fix branches with special characters not showing in GitUI (#523)
35+
- Removed inaccurate placeholder text for commit message in UI (#406)
3536

3637
## [2.6.0] - 2024-10-07
3738

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3047,7 +3047,7 @@ webui.NewChangedFilesView = function(workspaceView) {
30473047
'</div>' +
30483048
'<div class="commit-area col-sm-6">' +
30493049
'<div class="form-group">' +
3050-
'<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required, 72 character limit)">' +
3050+
'<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required)">' +
30513051
'</div>' +
30523052
'<div class="form-group">' +
30533053
'<textarea class="form-control" id="commitMsgDetail" rows="4" placeholder="Enter commit details (optional)"></textarea>' +

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3047,7 +3047,7 @@ webui.NewChangedFilesView = function(workspaceView) {
30473047
'</div>' +
30483048
'<div class="commit-area col-sm-6">' +
30493049
'<div class="form-group">' +
3050-
'<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required, 72 character limit)">' +
3050+
'<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required)">' +
30513051
'</div>' +
30523052
'<div class="form-group">' +
30533053
'<textarea class="form-control" id="commitMsgDetail" rows="4" placeholder="Enter commit details (optional)"></textarea>' +

0 commit comments

Comments
 (0)