Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Import All has been added to public-facing API (#891)

## Fixed
- Web UI workspace view labels changes as Unmerged if there are merge conflicts (#890)

## [2.14.0] - 2025-11-07

### Added
Expand Down
6 changes: 6 additions & 0 deletions git-webui/release/share/git-webui/webui/css/git-webui.css
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,12 @@ body {
position: absolute;
right: 5px;
}
#changedFilesContainer .file-area .U::after {
content: "Unmerged";
position: absolute;
right: 5px;
color: red;
}
#changedFilesContainer .file-area .other-user-label svg {
margin-right: 5px;
}
Expand Down
7 changes: 7 additions & 0 deletions git-webui/src/share/git-webui/webui/css/git-webui.less
Original file line number Diff line number Diff line change
Expand Up @@ -984,6 +984,13 @@ body {
right: 5px;
}

.U::after {
content: "Unmerged";
position: absolute;
right: 5px;
color: red;
}

.other-user-label svg {
margin-right: 5px;
}
Expand Down
Loading