Skip to content

Commit 13ef2aa

Browse files
committed
fix: label unmerged changes in workspace view
1 parent 5602495 commit 13ef2aa

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.15.0] - Unreleased
9+
10+
## Fixed
11+
- Web UI workspace view labels changes as Unmerged if there are merge conflicts (#890)
12+
813
## [2.14.0] - 2025-11-07
914

1015
### 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
}

module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Document name="git-source-control.ZPM">
44
<Module>
55
<Name>git-source-control</Name>
6-
<Version>2.14.0</Version>
6+
<Version>2.15.0</Version>
77
<Description>Server-side source control extension for use of Git on InterSystems platforms</Description>
88
<Keywords>git source control studio vscode</Keywords>
99
<Packaging>module</Packaging>

0 commit comments

Comments
 (0)