Skip to content

Commit 92156ca

Browse files
authored
Merge pull request #897 from intersystems/label-merge-conflicts
Label unmerged changes in workspace view
2 parents abb8042 + c0ce171 commit 92156ca

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Import All has been added to public-facing API (#891)
1212

13+
## Fixed
14+
- Web UI workspace view labels changes as Unmerged if there are merge conflicts (#890)
15+
1316
## [2.14.0] - 2025-11-07
1417

1518
### Added

git-webui/release/share/git-webui/webui/css/git-webui.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,12 @@ body {
981981
position: absolute;
982982
right: 5px;
983983
}
984+
#changedFilesContainer .file-area .U::after {
985+
content: "Unmerged";
986+
position: absolute;
987+
right: 5px;
988+
color: red;
989+
}
984990
#changedFilesContainer .file-area .other-user-label svg {
985991
margin-right: 5px;
986992
}

git-webui/src/share/git-webui/webui/css/git-webui.less

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -984,6 +984,13 @@ body {
984984
right: 5px;
985985
}
986986

987+
.U::after {
988+
content: "Unmerged";
989+
position: absolute;
990+
right: 5px;
991+
color: red;
992+
}
993+
987994
.other-user-label svg {
988995
margin-right: 5px;
989996
}

0 commit comments

Comments
 (0)