Skip to content

Commit d2a5079

Browse files
authored
Merge pull request #570 from intersystems/remove-commit-maxlen
Placeholder text on commit input no longer promises a length limit
2 parents a1361da + 42c9a1e commit d2a5079

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
@@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333
- Production configuration page no longer closes Sync/WebUI when operations there change the production (#542)
3434
- Remove leading/trailing spaces from input to Configure() (#356)
3535
- Fix branches with special characters not showing in GitUI (#523)
36+
- Removed inaccurate placeholder text for commit message in UI (#406)
3637

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

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)