Skip to content

Commit 6e44be0

Browse files
committed
fix(ui): always show branch name in details
1 parent b2727d9 commit 6e44be0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lua/lazy/view/render.lua

+1
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@ function M:details(plugin)
361361
table.insert(props, { "uri", (plugin.uri:gsub("%.git$", "")), "@text.reference" })
362362
local git = Git.info(plugin.dir, true)
363363
if git then
364+
git.branch = git.branch or Git.get_branch(plugin)
364365
if git.version then
365366
table.insert(props, { "version", tostring(git.version) })
366367
end

0 commit comments

Comments
 (0)