Skip to content

Commit ad0b4ca

Browse files
committed
feat(ui): show updates available diagnostic when an update is available
1 parent 8de617c commit ad0b4ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lua/lazy/view/render.lua

+4
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ function M:diagnostics(plugin)
274274
message = "updated from " .. plugin._.updated.from:sub(1, 7) .. " to " .. plugin._.updated.to:sub(1, 7),
275275
})
276276
end
277+
elseif plugin._.has_updates then
278+
self:diagnostic({
279+
message = "updates available",
280+
})
277281
end
278282
for _, task in ipairs(plugin._.tasks or {}) do
279283
if task:is_running() then

0 commit comments

Comments
 (0)