diff --git a/CHANGELOG.md b/CHANGELOG.md index d08fce9465de6..e3eea2959edc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +- Fixes [#3288](https://github.com/gitkraken/vscode-gitlens/issues/3288) - Branch, Tags, Stashes, Local Branch, and Remote Branch "Markers" Are Missing/Removed From Minimap + ## [15.0.2] - 2024-05-14 - Fixes [#3270](https://github.com/gitkraken/vscode-gitlens/issues/3270) - GitLens erroneously thinks certain branches are worktrees under some conditions diff --git a/src/webviews/apps/plus/graph/GraphWrapper.tsx b/src/webviews/apps/plus/graph/GraphWrapper.tsx index 23e6441c43164..d67f921c774a9 100644 --- a/src/webviews/apps/plus/graph/GraphWrapper.tsx +++ b/src/webviews/apps/plus/graph/GraphWrapper.tsx @@ -1429,6 +1429,7 @@ export function GraphWrapper({ rows={rows} rowsStats={rowsStats} dataType={graphConfig?.minimapDataType ?? 'commits'} + markerTypes={graphConfig?.minimapMarkerTypes} searchResults={searchResults} visibleDays={visibleDays} onSelected={e => handleOnMinimapDaySelected(e)}